Sha256: 4e4c4aef7a38b3f6c509b2b1a6add1dbc39c6b2dcfb39c1a95589a7a57203aa8

Contents?: true

Size: 706 Bytes

Versions: 9

Compression:

Stored size: 706 Bytes

Contents

source 'https://rubygems.org'
gemspec

gem 'rake'

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

if 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
end

case rails
when /\// # A path
  gem 'activerecord', path: "#{rails}/activerecord"
when /^v/ # A tagged version
  git 'git://github.com/rails/rails.git', tag: rails do
    gem 'activerecord'
  end
else
  git 'git://github.com/rails/rails.git', branch: rails do
    gem 'activerecord'
  end
end

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
polyamorous-1.3.3 Gemfile
polyamorous-1.3.2 Gemfile
polyamorous-1.3.1 Gemfile
polyamorous-1.3.0 Gemfile
solidus_backend-1.0.0.pre3 vendor/bundle/gems/polyamorous-1.2.0/Gemfile
solidus_backend-1.0.0.pre2 vendor/bundle/gems/polyamorous-1.2.0/Gemfile
solidus_backend-1.0.0.pre vendor/bundle/gems/polyamorous-1.2.0/Gemfile
shoppe-paypal-1.1.0 vendor/bundle/ruby/2.1.0/gems/polyamorous-1.2.0/Gemfile
polyamorous-1.2.0 Gemfile