draper/Gemfile

17 lines
306 B
Ruby
Raw Normal View History

2013-02-27 11:34:56 +00:00
source "https://rubygems.org"
2012-03-03 14:01:19 +00:00
gemspec
2012-12-26 13:33:40 +00:00
platforms :ruby do
gem "sqlite3"
end
2012-12-26 13:33:40 +00:00
platforms :jruby do
gem "minitest", ">= 3.0"
gem "activerecord-jdbcsqlite3-adapter", ">= 1.3.0.beta2"
2012-12-26 13:33:40 +00:00
end
2015-01-29 21:33:33 +00:00
version = ENV["RAILS_VERSION"] || "4.1"
2013-01-21 12:27:11 +00:00
2013-05-20 11:42:01 +00:00
eval_gemfile File.expand_path("../gemfiles/#{version}.gemfile", __FILE__)