activerecord-hackery--ransack/Gemfile

46 lines
1005 B
Ruby
Raw Normal View History

2013-12-07 00:51:55 +00:00
source 'https://rubygems.org'
2011-03-31 00:31:39 +00:00
gemspec
gem 'rake'
rails = ENV['RAILS'] || 'master'
if rails == 'master'
gem 'arel', github: 'rails/arel'
end
2014-08-21 22:01:13 +00:00
gem 'polyamorous', '~> 1.1'
2014-08-01 05:15:58 +00:00
gem 'pry'
# Provide timezone information on Windows
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
case rails
when /\// # A path
gem 'activesupport', path: "#{rails}/activesupport"
2014-08-01 06:42:45 +00:00
gem 'activerecord', path: "#{rails}/activerecord", require: false
2014-06-09 00:59:16 +00:00
gem 'actionpack', path: "#{rails}/actionpack"
when /^v/ # A tagged version
git 'git://github.com/rails/rails.git', :tag => rails do
gem 'activesupport'
gem 'activemodel'
2014-08-01 06:42:45 +00:00
gem 'activerecord', require: false
gem 'actionpack'
end
else
git 'git://github.com/rails/rails.git', :branch => rails do
gem 'activesupport'
gem 'activemodel'
2014-08-01 06:42:45 +00:00
gem 'activerecord', require: false
gem 'actionpack'
end
2013-12-04 15:09:33 +00:00
if rails == '3-0-stable'
gem 'mysql2', '< 0.3'
end
2012-01-19 14:06:10 +00:00
end
2014-08-01 06:42:45 +00:00
if ENV['DB'] =~ /mongodb/
2014-08-04 05:43:36 +00:00
gem 'mongoid', '~> 4.0.0', require: false
end