Sha256: 6a4c40e4b340fbdc8eca4409cf9b293da4cbb847a5f468cc3231208330ec7df8
Contents?: true
Size: 708 Bytes
Versions: 2
Compression:
Stored size: 708 Bytes
Contents
source 'https://rubygems.org' gemspec gem 'rake' rails = ENV['RAILS'] || 'master' gem 'polyamorous', '~> 1.1' case rails when /\// # A path gem 'activesupport', path: "#{rails}/activesupport" gem 'activerecord', path: "#{rails}/activerecord" 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 if rails == '3-0-stable' gem 'mysql2', '< 0.3' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ransack-1.4.1 | Gemfile |
ransack-1.4.0 | Gemfile |