Skip to content

Commit

Permalink
Merge pull request puppetlabs#503 from anodelman/master
Browse files Browse the repository at this point in the history
(BKR-147) add Gemfile setting for BEAKER_VERSION for puppet...
  • Loading branch information
jonnytdevops committed Mar 26, 2015
2 parents 0d79855 + 2c52ae2 commit cdd2dbb
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion Gemfile
@@ -1,5 +1,15 @@
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

group :development, :unit_tests do
gem 'rspec-core', '3.1.7', :require => false
gem 'puppetlabs_spec_helper', :require => false
Expand All @@ -8,8 +18,17 @@ group :development, :unit_tests do
gem 'json', :require => false
end

beaker_version = ENV['BEAKER_VERSION']
beaker_rspec_version = ENV['BEAKER_RSPEC_VERSION']
group :system_tests do
gem 'beaker-rspec', :require => false
if beaker_version
gem 'beaker', *location_for(beaker_version)
end
if beaker_rspec_version
gem 'beaker-rspec', *location_for(beaker_rspec_version)
else
gem 'beaker-rspec', :require => false
end
gem 'serverspec', :require => false
end

Expand Down

0 comments on commit cdd2dbb

Please sign in to comment.