forked from sensson/puppet-powerdns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
29 lines (25 loc) · 820 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
puppetversion = ENV.key?('PUPPET_VERSION') ? ENV['PUPPET_VERSION'] : ['~> 4.8.0']
gem 'facter', '>= 1.7.0'
gem 'metadata-json-lint', '< 2.0.0'
gem 'puppet', puppetversion
gem 'puppet-lint', '>= 1.0.0'
gem 'puppetlabs_spec_helper', '>= 1.0.0'
gem 'rspec-puppet', '~> 2.6.0'
gem 'rspec-puppet-facts', '~> 1.9.0'
if RUBY_VERSION < '2.3.0'
gem 'rubocop', '< 0.58.0'
else
gem 'rubocop'
end
gem 'safe_yaml', '~> 1.0.4'
gem 'simplecov', require: false
gem 'simplecov-console', require: false
group :system_tests do
gem 'beaker', '<= 2.51.0' if RUBY_VERSION < '2.2.5'
gem 'beaker-puppet_install_helper'
gem 'beaker-rspec'
gem 'beaker-vagrant'
gem 'nokogiri', '< 1.7.0' if RUBY_VERSION < '2.2.0'
gem 'public_suffix', '<= 1.4.6' if RUBY_VERSION < '2.0.0'
end