forked from mongodb/mongoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (37 loc) · 925 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
source 'https://rubygems.org'
gemspec
gem 'rake'
gem 'actionpack', '~> 5.1'
gem 'activemodel', '~> 5.1'
# 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 :test do
gem 'rspec-retry'
gem 'benchmark-ips'
gem 'rspec', '~> 3.7'
gem 'rspec-expectations', '~> 3.7', '<= 3.8.2'
#gem 'rspec-expectations', git: '/~https://github.com/p-mongo/rspec-expectations', ref: 'pr-1112-3.8'
gem 'fuubar'
gem 'rfc'
platforms :mri do
gem 'timeout-interrupt'
end
end
group :development, :testing do
gem 'yard'
platforms :mri do
if RUBY_VERSION < '2.3'
gem 'byebug', '~> 10.0'
else
gem 'byebug'
end
end
end