mirror of
https://github.com/drapergem/draper
synced 2023-03-27 23:21:17 -04:00
Latest mongoid only supports Ruby >= 2.5 (#912)
Ref: https://github.com/mongodb/mongoid/pull/5058
This commit is contained in:
parent
43a6e34529
commit
26a18c8cc9
1 changed files with 6 additions and 1 deletions
7
Gemfile
7
Gemfile
|
@ -21,4 +21,9 @@ if RUBY_VERSION >= "2.5.0"
|
|||
else
|
||||
gem "rails", "~> 5.0"
|
||||
end
|
||||
gem "mongoid", github: "mongodb/mongoid"
|
||||
|
||||
if RUBY_VERSION >= "2.5.0"
|
||||
gem "mongoid", github: "mongodb/mongoid"
|
||||
else
|
||||
gem "mongoid", "~> 7.2"
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue