-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkitchen-cabinet.gemspec
26 lines (23 loc) · 1.05 KB
/
kitchen-cabinet.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
Gem::Specification.new do |s|
s.name = 'kitchen-cabinet'
s.version = '3.0.1'
s.date = Time.now.strftime('%Y-%m-%d')
s.homepage = 'https://github.com/onehealth/kitchen-cabinet'
s.summary = 'Initializes a chef cookbook repo with relevant tools'
s.description = <<EOF
`kitchen-cabinet` will create a chef cookbook skeleton complete with testing suite including:
berkshelf, chefspec, test-kitchen, thor, foodcritic, rubocop, serverspec, thor-scmversion, and guard. It also creates a gemfile suitable for use in CI.
EOF
s.authors = ['Taylor Price']
s.email = '[email protected]'
s.license = 'apachev2'
s.required_ruby_version = '>= 1.9.3'
s.require_paths = ['lib']
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.files = `git ls-files`.split($RS)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.extensions = 'ext/mkrf_conf.rb'
s.add_runtime_dependency 'git', '~> 1.2', '>= 1.2.6'
s.add_runtime_dependency 'erubis', '~> 2.7', '>= 2.7.0'
s.add_development_dependency 'rspec', '~> 2.14', '>= 2.14.1'
end