Sha256: 5b314f12e1f30e4ba19db70d63ee5124fa63f86ae650b6750646f532eec1eecc
Contents?: true
Size: 1.24 KB
Versions: 3
Compression:
Stored size: 1.24 KB
Contents
source 'https://rubygems.org' gemspec gem 'rake' rails = ENV['RAILS'] || '5-0-stable' if rails == 'master' gem 'polyamorous', github: 'activerecord-hackery/polyamorous' else gem 'polyamorous', '~> 1.3' end 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" gem 'activerecord', path: "#{rails}/activerecord", require: false 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', require: false gem 'actionpack' end else git 'git://github.com/rails/rails.git', :branch => rails do gem 'activesupport' gem 'activemodel' gem 'activerecord', require: false gem 'actionpack' end if rails == '3-0-stable' gem 'mysql2', '< 0.3' end end if ENV['DB'] =~ /mongoid4/ gem 'mongoid', '~> 4.0.0', require: false end if ENV['DB'] =~ /mongoid5/ gem 'mongoid', '~> 5.0.0', require: false end group :test do # TestUnit was removed from Ruby 2.2 but still needed for testing Rails 3.x. gem 'test-unit', '~> 3.0' if RUBY_VERSION >= '2.2' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ransack-1.8.4 | Gemfile |
ransack-1.8.3 | Gemfile |
ransack-1.8.2 | Gemfile |