-
Notifications
You must be signed in to change notification settings - Fork 80
/
chef-extensions.gemspec
36 lines (30 loc) · 1.52 KB
/
chef-extensions.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
36
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'chef/sugar/version'
Gem::Specification.new do |spec|
spec.name = 'chef-sugar'
spec.version = Chef::Sugar::VERSION
spec.authors = ['Seth Vargo']
spec.email = ['[email protected]']
spec.description = 'A series of helpful sugar of the Chef core and ' \
'other resources to make a cleaner, more lean recipe ' \
'DSL, enforce DRY principles, and make writing Chef ' \
'recipes an awesome experience!'
spec.summary = 'A collection of helper methods and modules that ' \
'make working with Chef recipes awesome.'
spec.homepage = 'https://github.com/sethvargo/chef-sugar'
spec.license = 'Apache 2.0'
spec.required_ruby_version = '>= 1.9'
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'chef', '~> 11.0'
spec.add_development_dependency 'rspec', '~> 2.11'
spec.add_development_dependency 'chefspec', '~> 3.0.0.beta'
spec.add_development_dependency 'test-kitchen', '~> 1.0.0.beta'
spec.add_development_dependency 'kitchen-vagrant', '~> 0.11'
end