Gemfile in beaker-abs-0.6.0 vs Gemfile in beaker-abs-0.7.0

- old
+ new

@@ -1,4 +1,18 @@ source 'https://rubygems.org' # Specify your gem's dependencies in beaker-abs.gemspec 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 :testing do + gem "beaker", *location_for(ENV['BEAKER_VERSION'] || '~> 4.0') +end