Skip to content

Commit

Permalink
update gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
saz committed Oct 6, 2013
1 parent ad67617 commit d089879
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
source 'https://rubygems.org'

puppetversion = ENV.key?('PUPPET_VERSION') ? "= #{ENV['PUPPET_VERSION']}" : ['>= 2.7']
gem 'puppet', puppetversion
gem 'puppetlabs_spec_helper', '>= 0.1.0'
group :development, :test do
gem 'rake', :require => false
gem 'puppet-lint', :require => false
gem 'rspec-puppet', :require => false
gem 'puppetlabs_spec_helper', :require => false
end

if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', :require => false
end

0 comments on commit d089879

Please sign in to comment.