activerecord-hackery--ransack/Gemfile

52 lines
1.2 KiB
Ruby
Raw Normal View History

2013-12-06 19:51:55 -05:00
source 'https://rubygems.org'
2011-03-30 20:31:39 -04:00
gemspec
gem 'rake'
rails = ENV['RAILS'] || '4-2-stable'
if rails == 'master'
gem 'arel', github: 'rails/arel'
2015-04-05 06:35:37 -04:00
gem 'polyamorous', github: 'activerecord-hackery/polyamorous'
else
gem 'polyamorous', '~> 1.2'
end
2014-08-01 01:15:58 -04: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 02:42:45 -04:00
gem 'activerecord', path: "#{rails}/activerecord", require: false
2014-06-08 20:59:16 -04: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 02:42:45 -04: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 02:42:45 -04:00
gem 'activerecord', require: false
gem 'actionpack'
end
2013-12-04 10:09:33 -05:00
if rails == '3-0-stable'
gem 'mysql2', '< 0.3'
end
2012-01-19 09:06:10 -05:00
end
2014-08-01 02:42:45 -04:00
if ENV['DB'] =~ /mongodb/
2014-08-04 01:43:36 -04:00
gem 'mongoid', '~> 4.0.0', require: false
end
# Removed from Ruby 2.2 but needed for testing Rails 3.x.
group :test do
gem 'test-unit', '~> 3.0' if RUBY_VERSION >= '2.2'
end