instack-undercloud/Gemfile
Alex Schultz c9e5485f45 Switch to use Puppet Openstack spec helper
Rather than continuing to manage the Gemfile, we can leverage the Puppet
Openstack spec helper which will keep our gem dependencies in line with
the other puppet modules.  By leveraging the Puppet Openstack spec
helper we can leverage the dependency fixes that are usually found in
the other modules first.

Change-Id: I6fee3c45ea135d53341df6145b33f62205f82161
2016-10-05 17:16:24 -06:00

23 lines
561 B
Ruby

source ENV['GEM_SOURCE'] || "https://rubygems.org"
group :development, :test, :system_tests do
gem 'puppet-openstack_spec_helper',
:git => 'https://git.openstack.org/openstack/puppet-openstack_spec_helper',
:branch => 'master',
:require => false
end
if facterversion = ENV['FACTER_GEM_VERSION']
gem 'facter', facterversion, :require => false
else
gem 'facter', :require => false
end
if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', :require => false
end
# vim:ft=ruby