forked from jmanero/chef_life
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chef_life.gemspec
29 lines (24 loc) · 992 Bytes
/
chef_life.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'chef_life/version'
Gem::Specification.new do |spec|
spec.name = 'chef_life'
spec.version = ChefLife::VERSION
spec.authors = ['jmanero']
spec.email = ['john.manero@gmail.com']
spec.summary = 'Humane lifecycle management for cookbooks'
spec.description = IO.read(File.expand_path('../README.md', __FILE__))
spec.homepage = 'https://github.com/jmanero/chef_life'
spec.license = 'MIT'
spec.files = `git ls-files`.split("\n")
spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
spec.test_files = spec.files.grep(/^(test|spec|features)\//)
spec.require_paths = ['lib']
spec.add_dependency 'aws-sdk', '~> 2.0'
spec.add_dependency 'chef', '~> 12.0'
spec.add_dependency 'ignorefile'
spec.add_dependency 'thor'
spec.add_dependency 'thor-scmversion', '1.7.0'
spec.add_development_dependency 'bundler', '~> 1.7'
end