fuel-library/deployment/Gemfile
Dmitry Ilyin d03bf40521 Puppet4 support: support files
* enable both Puppet4 and Puppet3 noop tests
* Rake support
* Module and gem versions
* Script improvements

Change-Id: Ib3db0e8491a34851ba86f9364131d84ed7abf2ee
Related-Bug: 1586480
2016-08-30 19:02:07 +00:00

16 lines
376 B
Ruby

source 'https://rubygems.org'
gem 'pry'
# this is used to bundle install librarian puppet for the deployment folder
group :development, :test do
gem 'librarian-puppet-simple', :require => false
end
if ENV['PUPPET_GEM_VERSION']
gem 'puppet', ENV['PUPPET_GEM_VERSION'], :require => false
else
gem 'puppet', :require => false
end
# vim: set ft=ruby ts=2 sw=2 tw=0 et :