forked from mongodb/mongo-ruby-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
45 lines (40 loc) · 859 Bytes
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
source 'https://rubygems.org'
gemspec
gem 'yard'
group :development, :testing do
gem 'jruby-openssl', :platforms => [ :jruby ]
gem 'json', :platforms => [ :jruby ]
gem 'rspec', '~> 3.0'
gem 'mime-types', '~> 1.25'
if RUBY_VERSION < '2.0.0'
gem 'rake', '~> 12.2.0'
gem 'httparty', '0.14.0'
else
gem 'rake'
gem 'httparty'
end
gem 'yajl-ruby', require: 'yajl', platforms: :mri
gem 'fuubar'
platforms :mri do
if RUBY_VERSION >= '2.0.0'
gem 'byebug'
end
end
# for benchmark tests
gem 'celluloid', platforms: :mri
# timers 4.2 requires ruby >= 2.2
gem 'timers', '< 4.2'
end
group :testing do
gem 'ice_nine'
gem 'rspec-retry'
gem 'rfc'
platforms :mri do
gem 'timeout-interrupt'
end
end
group :development do
gem 'ruby-prof', :platforms => :mri
gem 'pry-rescue'
gem 'pry-nav'
end