Latest mongoid only supports Ruby >= 2.5 (#912)

Ref: https://github.com/mongodb/mongoid/pull/5058
This commit is contained in:
y-yagi 2021-12-17 05:16:09 +09:00 committed by GitHub
parent 43a6e34529
commit 26a18c8cc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -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