add testing dependencies

This commit is contained in:
Gareth Rushgrove
2013-04-02 16:04:31 +01:00
parent ff80bc7f79
commit 1f7545b213
2 changed files with 50 additions and 0 deletions

13
Gemfile Normal file
View File

@@ -0,0 +1,13 @@
source "http://rubygems.org"
if ENV.key?('PUPPET_VERSION')
puppetversion = "= #{ENV['PUPPET_VERSION']}"
else
puppetversion = ['~> 2.7']
end
gem "rake"
gem "puppet", puppetversion
gem "puppet-lint"
gem "rspec-puppet"
gem "puppetlabs_spec_helper"