changes params structure

This commit is contained in:
Arne Teuke
2020-06-07 14:24:54 +02:00
parent 5439dccf9d
commit 6aff668126
2 changed files with 26 additions and 1 deletions

25
.goutputstream-F4IKL0 Normal file
View File

@@ -0,0 +1,25 @@
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
puppetversion = ENV.key?('PUPPET_VERSION') ? ENV['PUPPET_VERSION'] : ['<= 5.5.6']
gem 'metadata-json-lint'
gem 'puppet', puppetversion
gem 'puppetlabs_spec_helper', '>= 1.0.0'
gem 'puppet-lint'
gem 'facter'
gem 'rspec-puppet'
gem 'yard'
gem 'puppet-strings', '< 2.0.0'
gem 'rake'
gem 'semantic_puppet'
gem 'rgen'
gem 'public_suffix', '<= 2.0.5'
gem 'parallel', '<= 1.13.0'
# rspec must be v2 for ruby 1.8.7
if RUBY_VERSION >= '1.8.7' && RUBY_VERSION < '1.9'
gem 'rspec', '~> 2.0'
gem 'rake', '~> 10.0'
else
# rubocop requires ruby >= 1.9
gem 'rubocop', '<= 0.50.0'
end

View File

@@ -9,7 +9,7 @@ gem 'facter'
gem 'rspec-puppet' gem 'rspec-puppet'
gem 'yard' gem 'yard'
gem 'puppet-strings', '< 2.0.0' gem 'puppet-strings', '< 2.0.0'
gem 'rake' gem 'rake', '~> 12.3', '>= 12.3.3'
gem 'semantic_puppet' gem 'semantic_puppet'
gem 'rgen' gem 'rgen'
gem 'public_suffix', '<= 2.0.5' gem 'public_suffix', '<= 2.0.5'