Sha256: 2289114f50a3b7a92d18302236553ad219ee3fdaec8a9b16ee1eca5fbe4f299b
Contents?: true
Size: 724 Bytes
Versions: 29
Compression:
Stored size: 724 Bytes
Contents
source ENV['GEM_SOURCE'] || "https://rubygems.org" gemspec def location_for(place, fake_version = nil) if place =~ /^(git:[^#]*)#(.*)/ [fake_version, { :git => $1, :branch => $2, :require => false }].compact elsif place =~ /^file:\/\/(.*)/ ['>= 0', { :path => File.expand_path($1), :require => false }] else [place, { :require => false }] end end group :acceptance_testing do gem "beaker", *location_for(ENV['BEAKER_VERSION'] || '~> 4.0') gem "beaker-vmpooler", *location_for(ENV['BEAKER_VMPOOLER_VERSION'] || '~> 1.3') end gem "scooter", *location_for(ENV['SCOOTER_VERSION'] || '~> 4.3') gem 'deep_merge' if File.exists? "#{__FILE__}.local" eval(File.read("#{__FILE__}.local"), binding) end
Version data entries
29 entries across 29 versions & 1 rubygems