1
0
Fork 0
mirror of https://github.com/drapergem/draper synced 2023-03-27 23:21:17 -04:00
draper/Gemfile

29 lines
443 B
Ruby

source "https://rubygems.org"
gemspec
platforms :ruby do
if RUBY_VERSION >= "2.5.0"
gem 'sqlite3'
else
gem 'sqlite3', '~> 1.3.6'
end
end
platforms :jruby do
gem "minitest"
gem "activerecord-jdbcsqlite3-adapter"
end
if RUBY_VERSION >= "2.5.0"
gem "rails", "~> 6.0"
gem 'webrick'
else
gem "rails", "~> 5.0"
end
if RUBY_VERSION >= "2.5.0"
gem "mongoid", github: "mongodb/mongoid"
else
gem "mongoid", "~> 7.2"
end