Sha256: f0c0265b35ff98407b9030f2c327ada2b1037ea21a9d183e4dd2f29b1fb6ef1c

Contents?: true

Size: 660 Bytes

Versions: 5

Compression:

Stored size: 660 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 '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

5 entries across 5 versions & 1 rubygems

Version Path
polyamorous-0.6.4 Gemfile
polyamorous-0.6.3 Gemfile
polyamorous-0.6.2 Gemfile
polyamorous-0.6.0 Gemfile
polyamorous-0.5.0 Gemfile