module-icingaweb2/Gemfile

18 lines
498 B
Text
Raw Normal View History

source ENV['GEM_SOURCE'] || "https://rubygems.org"
2015-02-20 10:40:45 +01:00
# special dependencies for Ruby 1.8
# since there are still several OSes with it
if RUBY_VERSION =~ /^1\.8\./
gem 'rspec-core', '~> 3.1.7'
gem 'nokogiri', '~> 1.5.0'
2015-02-20 10:40:45 +01:00
end
gem 'puppet', ENV.key?('PUPPET_VERSION') ? "~> #{ENV['PUPPET_VERSION']}.0" : '>= 2.7'
gem 'rspec-puppet', '~> 2.0'
gem 'puppetlabs_spec_helper', '>= 0.1.0'
2016-07-04 11:26:37 +02:00
gem 'puppet-lint', '>= 2'
gem 'facter', '>= 1.7.0'
2015-10-30 10:35:24 +01:00
gem 'metadata-json-lint'
2015-02-20 10:40:45 +01:00
gem 'puppet-lint-strict_indent-check'