forked from saltstack/kitchen-salt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkitchen-salt.gemspec
More file actions
27 lines (22 loc) · 925 Bytes
/
kitchen-salt.gemspec
File metadata and controls
27 lines (22 loc) · 925 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
# encoding: utf-8
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'kitchen-salt/version'
Gem::Specification.new do |s|
s.name = 'kitchen-salt'
s.version = Kitchen::Salt::VERSION
s.authors = ['Simon McCartney']
s.email = ['simon@mccartney.ie']
s.homepage = 'https://github.com//kitchen-salt'
s.summary = 'salt provisioner for test-kitchen'
s.licenses = 'Apache-2.0'
s.description = 'salt provisioner for test-kitchen '\
'so that you can test all the things'
s.files = `git ls-files lib`.split("\n")
s.platform = Gem::Platform::RUBY
s.require_paths = ['lib']
s.rubyforge_project = '[none]'
s.add_runtime_dependency 'test-kitchen', '~> 1.4'
s.add_development_dependency 'rspec', '~> 3.2'
s.add_development_dependency 'pry', '~> 0.10.1'
s.add_development_dependency 'gem-release', '~> 0.7.3'
end