Sha256: 791b54c72f782699273fde311f9ca77265f2b23daee9f08fde89c0fe84354d49

Contents?: true

Size: 712 Bytes

Versions: 1

Compression:

Stored size: 712 Bytes

Contents

source 'https://rubygems.org'
gemspec

gem 'rake'

rails = ENV['RAILS'] || '4-1-stable'

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

1 entries across 1 versions & 1 rubygems

Version Path
ransack-1.3.0 Gemfile