Added support for Linux Mint

This commit is contained in:
Gene Liverman 2017-09-18 19:01:57 -07:00 committed by Gene Liverman
parent e23ea50d4b
commit b0ec3a08ba
23 changed files with 337 additions and 87 deletions

20
Gemfile
View file

@ -5,7 +5,7 @@ source 'https://rubygems.org'
if ENV.key?('PUPPET_VERSION')
puppetversion = ENV['PUPPET_VERSION'].to_s
else
puppetversion = ['>= 4.9', '< 5']
puppetversion = ['>= 5', '< 6']
end
# rubocop:enable ConditionalAssignment
@ -13,23 +13,23 @@ group :production do
gem 'os', '~> 1.0'
gem 'puppet', puppetversion
gem 'r10k', '~> 2.5'
gem 'rugged', '~> 0.24'
gem 'rugged', '~> 0.26'
gem 'xmlrpc', '~> 0.3.0' if RUBY_VERSION >= '2.3'
end
group :development, :unit_tests do
gem 'json', '>= 2.0.2'
gem 'metadata-json-lint', '~> 1.2'
gem 'puppetlabs_spec_helper', '~> 2.1'
gem 'rspec-puppet', '~> 2.5'
gem 'rubocop', '~> 0.49'
gem 'tty-command', '~> 0.4'
gem 'tty-file', '~> 0.3'
gem 'tty-prompt', '~> 0.12'
gem 'metadata-json-lint', '~> 2.0'
gem 'puppetlabs_spec_helper', '~> 2.3'
gem 'rspec-puppet', '~> 2.6'
gem 'rubocop', '~> 0.50'
gem 'tty-command', '~> 0.6'
gem 'tty-file', '~> 0.4'
gem 'tty-prompt', '~> 0.13'
gem 'yamllint', '~> 0.0.9'
# puppet-lint and plugins
gem 'puppet-lint', '~> 2.2'
gem 'puppet-lint', '~> 2.3'
gem 'puppet-lint-absolute_classname-check', '~> 0.2'
gem 'puppet-lint-absolute_template_path', '~> 1.0'
gem 'puppet-lint-empty_string-check', '~> 0.2'