forked from mongodb/mongoid
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (34 loc) · 767 Bytes
/
Gemfile
File metadata and controls
38 lines (34 loc) · 767 Bytes
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
source 'https://rubygems.org'
gemspec
gem 'rake'
gem 'actionpack'
gem 'activemodel'
# https://jira.mongodb.org/browse/MONGOID-4614
if RUBY_VERSION < '2.3'
gem 'i18n', '~> 1.0', '>= 1.1', '< 1.5'
# nokogiri does not support 2.2 anymore.
# https://github.com/sparklemotion/nokogiri/issues/1841
# We are getting it as a transitive dependency
gem 'nokogiri', '<1.10'
else
gem 'i18n', '~> 1.0', '>= 1.1'
end
group :development do
gem 'yard'
end
group :test do
gem 'rspec-retry'
gem 'benchmark-ips'
gem 'rspec', '~> 3.7'
gem 'rspec-expectations', '~> 3.7', '>= 3.8.4'
gem 'fuubar'
gem 'rfc'
platforms :mri do
gem 'timeout-interrupt'
if RUBY_VERSION < '2.3'
gem 'byebug', '~> 10.0'
else
gem 'byebug'
end
end
end