activerecord-hackery--ransack/Gemfile

31 lines
700 B
Ruby
Raw Normal View History

2013-08-06 17:00:52 +00:00
source "https://rubygems.org"
2011-03-31 00:31:39 +00:00
gemspec
gem 'rake'
2013-08-06 17:00:52 +00:00
rails = ENV['RAILS'] || '4-0-stable'
2013-08-06 17:00:52 +00:00
gem 'arel'
case rails
when /\// # A path
gem 'activesupport', :path => "#{rails}/activesupport"
gem 'activemodel', :path => "#{rails}/activemodel"
gem 'activerecord', :path => "#{rails}/activerecord"
gem 'actionpack', :path => "#{rails}/activerecord"
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
2012-01-19 14:06:10 +00:00
end