-
Notifications
You must be signed in to change notification settings - Fork 85
/
kitchen-puppet.gemspec
33 lines (27 loc) · 1.09 KB
/
kitchen-puppet.gemspec
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
# encoding: utf-8
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'kitchen-puppet/version'
Gem::Specification.new do |s|
s.name = 'kitchen-puppet'
s.license = 'Apache-2.0'
s.version = Kitchen::Puppet::VERSION
s.authors = ['Neill Turner']
s.email = ['neillwturner@gmail.com']
s.homepage = 'https://github.com/neillturner/kitchen-puppet'
s.summary = 'puppet provisioner for test-kitchen'
candidates = Dir.glob('{lib}/**/*') + ['README.md', 'provisioner_options.md', 'kitchen-puppet.gemspec']
s.files = candidates.sort
s.platform = Gem::Platform::RUBY
s.require_paths = ['lib']
s.rubyforge_project = '[none]'
s.required_ruby_version = '>= 2.1'
s.add_dependency 'net-ssh', '>= 3'
s.add_dependency 'test-kitchen', '>= 1.4'
s.add_dependency 'librarian-puppet', '>= 3.0'
s.description = <<-TEXT
== DESCRIPTION:
Puppet Provisioner for Test Kitchen
== FEATURES:
Supports puppet apply, puppet agent, puppet bolt, hiera, hiera-eyaml, hiera-eyaml-gpg, custom facts, librarian-puppet, puppet collections
TEXT
end