activerecord-hackery--ransack/Gemfile

33 lines
712 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'
2014-04-22 17:24:48 +00:00
rails = ENV['RAILS'] || '4-1-stable'
2014-08-21 22:01:13 +00:00
gem 'polyamorous', '~> 1.1'
case rails
when /\// # A path
gem 'activesupport', path: "#{rails}/activesupport"
gem 'activerecord', path: "#{rails}/activerecord"
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'
gem 'activerecord'
gem 'actionpack'
end
else
git 'git://github.com/rails/rails.git', :branch => rails do
gem 'activesupport'
gem 'activemodel'
gem 'activerecord'
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