Sha256: a16eab89a706ce622e8b92596c5e99c84def25d8b27f34de8d08cac508b5b971
Contents?: true
Size: 788 Bytes
Versions: 3
Compression:
Stored size: 788 Bytes
Contents
source 'https://rubygems.org' gemspec gem 'rake' rails = ENV['RAILS'] || 'master' gem 'polyamorous', github: 'activerecord-hackery/polyamorous' 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 if rails == '3-0-stable' gem 'mysql2', '< 0.3' end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ransack-1.2.2 | Gemfile |
ransack-1.2.1 | Gemfile |
ransack-1.2.0 | Gemfile |