Add beaker-rspec gem to Gemfile

In 3f1f51 we added most of the boilerplate needed to run beaker-rspec
tests, but we still need the beaker-rspec gem itself. This patch adds
the gem to the Gemfile and reorganizes the Gemfile following
puppet-openstackci's model.

Change-Id: Ifc1ee3c62693680c425f0ca7962f9a716e16ce11
This commit is contained in:
Colleen Murphy 2015-08-11 18:33:53 -07:00
parent 4ab3347998
commit df927cacf9
1 changed files with 9 additions and 6 deletions

15
Gemfile
View File

@ -1,6 +1,6 @@
source 'https://rubygems.org'
group :development, :test do
group :development, :unit_tests do
gem 'puppetlabs_spec_helper', :require => false
gem 'metadata-json-lint'
@ -18,13 +18,16 @@ group :development, :test do
gem 'puppet-lint-variable_contains_upcase'
gem 'puppet-lint-spaceship_operator_without_tag-check'
gem 'puppet-lint-undef_in_function-check'
end
if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', '~> 3.0', :require => false
end
group :system_tests do
gem 'beaker-rspec', :require => false
end
if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', '~> 3.0', :require => false
end
# vim:ft=ruby