forked from elastic/elasticsearch-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
31 lines (26 loc) · 1.01 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
source 'https://rubygems.org'
gem "bundler", "> 1"
if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
gem "rake", "~> 11.1"
else
gem "rake", "< 11.0"
end
gem 'elasticsearch-api', :path => File.expand_path("../elasticsearch-api", __FILE__), :require => false
gem 'elasticsearch-transport', :path => File.expand_path("../elasticsearch-transport", __FILE__), :require => false
gem 'elasticsearch-extensions', :path => File.expand_path("../elasticsearch-extensions", __FILE__), :require => false
gem 'elasticsearch', :path => File.expand_path("../elasticsearch", __FILE__), :require => false
gem "pry"
gem "ansi"
gem "shoulda-context"
gem "mocha"
gem "yard"
if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
gem "ruby-prof" unless defined?(JRUBY_VERSION) || defined?(Rubinius)
gem "require-prof" unless defined?(JRUBY_VERSION) || defined?(Rubinius)
gem "simplecov"
gem "simplecov-rcov"
gem "cane"
end
if defined?(RUBY_VERSION) && RUBY_VERSION > '2.2'
gem "test-unit", '~> 2'
end