forked from dev-sec/puppet-ssh-hardening
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
38 lines (32 loc) · 959 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
30
31
32
33
34
35
36
37
38
# encoding: utf-8
source 'https://rubygems.org'
puppetversion = ENV['PUPPET_VERSION']
if puppetversion
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', :require => false
end
group :test do
gem 'rake'
# bugfix for ruby 1.8, puppet+rspec interplay
# https://github.com/rspec/rspec-core/issues/1864
gem 'rspec', '~> 3.1.0', :require => false if RUBY_VERSION.start_with? '1.8'
gem 'rspec-puppet'
# avoid NoMethodError: private method `clone' called for #<RuboCop::Cop::CopStore:0x00000104e286c8>
gem 'puppetlabs_spec_helper', :git => 'https://github.com/ehaselwanter/puppetlabs_spec_helper'
gem 'puppet-lint'
gem 'rubocop', '~> 0.31' if RUBY_VERSION > '1.9.2'
end
group :development do
gem 'guard-rake'
end
group :integration do
gem 'test-kitchen'
gem 'kitchen-vagrant'
gem 'kitchen-puppet'
gem 'librarian-puppet'
gem 'kitchen-sharedtests', '~> 0.2.0'
end
group :openstack do
gem 'kitchen-openstack'
end