forked from neillturner/kitchen-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen-ansible.gemspec
35 lines (29 loc) · 1.05 KB
/
kitchen-ansible.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
34
35
# encoding: utf-8
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'kitchen-ansible/version'
Gem::Specification.new do |s|
s.name = 'kitchen-ansible'
s.license = 'Apache-2.0'
s.version = Kitchen::Ansible::VERSION
s.authors = ['Neill Turner']
s.email = ['[email protected]']
s.homepage = 'https://github.com/neillturner/kitchen-ansible'
s.summary = 'ansible provisioner for test-kitchen'
candidates = Dir.glob('{lib}/**/*') + ['README.md', 'provisioner_options.md', 'kitchen-ansible.gemspec']
s.files = candidates.sort
s.platform = Gem::Platform::RUBY
s.require_paths = ['lib']
s.rubyforge_project = '[none]'
s.description = <<-EOF
== DESCRIPTION:
Ansible Provisioner for Test Kitchen
== FEATURES:
Supports running ansible-playbook
EOF
s.add_development_dependency 'rspec'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake'
s.required_ruby_version = '>= 2.0'
s.add_dependency 'test-kitchen', '~> 1.4'
s.add_dependency 'net-ssh', '>= 3'
end