forked from mongodb/bson-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
39 lines (34 loc) · 727 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
source 'https://rubygems.org'
gemspec
if RUBY_VERSION >= '2.3.0'
gem 'json'
else
gem 'json', '~> 1.8'
end
if RUBY_VERSION < '2.0.0'
gem 'rake', '~> 12.2.0'
else
gem 'rake'
end
group :development, :test do
gem 'rspec', '~> 3.2'
gem 'rake-compiler'
gem 'ruby-prof', :platforms => :mri
gem 'yard'
gem 'activesupport'
if ENV['CI']
gem 'mime-types', '1.25' # v2.0+ does not support ruby 1.8
else
if RUBY_VERSION >= '2.0.0'
gem 'byebug', platforms: :mri
end
gem 'pry', platforms: :jruby
gem 'pry-nav', platforms: :jruby
# https://github.com/jruby/jruby/wiki/UsingTheJRubyDebugger
gem 'ruby-debug', platforms: :jruby
end
end
group :test do
gem 'fuubar'
gem 'rfc'
end