Sha256: d63a8e7839757a338336b82f6d158ea7920d898aead54af9834c12b5dfce316b
Contents?: true
Size: 535 Bytes
Versions: 16
Compression:
Stored size: 535 Bytes
Contents
source ENV['GEM_SOURCE'] || "https://rubygems.org" 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 gem "beaker", *location_for(ENV['BEAKER_VERSION'] || '~> 2.8') gem 'rake', "~> 10.1" if File.exists? "#{__FILE__}.local" eval(File.read("#{__FILE__}.local"), binding) end
Version data entries
16 entries across 16 versions & 2 rubygems