Sha256: 4ba8e263289f20837d84958ac19eb0641c0867b3262ec68e7092e6784e8387a2

Contents?: true

Size: 957 Bytes

Versions: 5

Compression:

Stored size: 957 Bytes

Contents

source "http://rubygems.org"
gemspec

gem 'rake'

rails = ENV['RAILS'] || 'master'
arel = ENV['AREL'] || 'master'

arel_opts = case arel
when /\// # A path
  {:path => arel}
when /^v/ # A tagged version
  {:git => 'git://github.com/rails/arel.git', :tag => arel}
else
  {:git => 'git://github.com/rails/arel.git', :branch => arel}
end

gem 'arel', arel_opts

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

5 entries across 5 versions & 1 rubygems

Version Path
ransack-0.5.8 Gemfile
ransack-0.5.7 Gemfile
ransack-0.5.6 Gemfile
ransack-0.5.5 Gemfile
ransack-0.5.4 Gemfile