-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathGemfile
More file actions
30 lines (26 loc) · 741 Bytes
/
Gemfile
File metadata and controls
30 lines (26 loc) · 741 Bytes
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
source 'https://rubygems.org'
puppetversion = ENV.key?('PUPPET_VERSION') ? ENV['PUPPET_VERSION'] : '3.8.7'
group :rspec, :kitchen do
gem 'librarian-puppet', '2.1.0'
gem 'puppet_forge', '< 2.0.0'
gem 'puppet', puppetversion
gem 'rspec_junit_formatter'
gem 'puppet-blacksmith'
gem 'net-ssh', '~> 2.0'
end
group :rspec do
gem 'puppetlabs_spec_helper', '>= 0.1.0'
gem 'puppet-lint', '< 1.1.0'
gem 'facter', '>= 1.7.0'
gem 'rspec-puppet'
gem 'puppet-syntax'
gem 'metadata-json-lint'
gem 'rspec', '~> 3.3'
end
group :kitchen do
gem 'test-kitchen'
gem 'kitchen-puppet'
gem 'kitchen-docker', '< 2.2.0' # https://github.com/portertech/kitchen-docker/issues/148
gem 'kitchen-vagrant'
gem 'vagrant-wrapper'
end