Sha256: 0a4da583fc41f0e110db96d3bb13f93da29ec1a60d964567acdaed17a9af1044

Contents?: true

Size: 700 Bytes

Versions: 2

Compression:

Stored size: 700 Bytes

Contents

source "https://rubygems.org"
gemspec

gem 'rake'

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

gem 'arel'

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
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ransack-1.1.0 Gemfile
ransack-1.0.0 Gemfile