Sha256: edeced0ff36ad05fa6213b8f0d42e88783175bbf28a842d0f98c063217405bb6
Contents?: true
Size: 736 Bytes
Versions: 2
Compression:
Stored size: 736 Bytes
Contents
source ENV['GEM_SOURCE'] || 'https://artifactory.delivery.puppetlabs.net/artifactory/api/gems/rubygems/' 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'] || '~> 4.5') gem 'beaker-pe', '~> 3.0' gem 'beaker-answers' gem 'beaker-hostgenerator', *location_for(ENV['BEAKER_HOSTGENERATOR_VERSION'] || '~> 1.1') gem 'beaker-abs', *location_for(ENV['BEAKER_ABS_VERSION'] || '~> 0.4') gem 'rototiller', '= 0.1.0' gem 'beaker-qa-i18n'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
r10k-4.1.0 | integration/Gemfile |
r10k-4.0.2 | integration/Gemfile |