-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathkitchen-localhost.gemspec
More file actions
36 lines (30 loc) · 1.35 KB
/
kitchen-localhost.gemspec
File metadata and controls
36 lines (30 loc) · 1.35 KB
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
# Encoding: UTF-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'kitchen/localhost/version'
Gem::Specification.new do |spec|
spec.name = 'kitchen-localhost'
spec.version = Kitchen::Localhost::VERSION
spec.authors = ['Jonathan Hartman']
spec.email = %w(j@p4nt5.com)
spec.description = 'A Test Kitchen Driver for localhost'
spec.summary = 'Use Test Kitchen on your local machine!'
spec.homepage = 'https://github.com/test-kitchen/kitchen-localhost'
spec.license = 'Apache 2.0'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.executables = []
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = %w(lib)
spec.required_ruby_version = '>= 2.0.0'
spec.add_dependency 'test-kitchen', '~> 1.4'
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake', '~> 11.0'
spec.add_development_dependency 'rubocop', '~> 0.39'
spec.add_development_dependency 'rspec', '~> 3.4'
spec.add_development_dependency 'simplecov', '~> 0.11'
spec.add_development_dependency 'simplecov-console', '~> 0.3'
spec.add_development_dependency 'coveralls', '~> 0.8'
spec.add_development_dependency 'berkshelf', '~> 4.3'
end