Skip to content

Commit

Permalink
Add Gemfile to manage dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
blkperl committed May 11, 2012
1 parent 1f70fdb commit fdb0547
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Gemfile
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,15 @@
source :rubygems

puppetversion = ENV.key?('PUPPET_VERSION') ? "= #{ENV['PUPPET_VERSION']}" : ['>= 2.7']

gem 'puppet', puppetversion
gem 'hiera', '>= 0.3.0'
gem 'hiera-puppet', '>= 0.3.0'

group :test do
gem 'mocha', '>= 0.11.0'
gem 'puppet-lint'
gem 'rake', '>= 0.9.0'
gem 'rspec', '>= 2.8.0'
gem 'rspec-puppet', '>= 0.1.1'
end

0 comments on commit fdb0547

Please sign in to comment.