forked from mattray/spiceweasel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspiceweasel.gemspec
24 lines (20 loc) · 990 Bytes
/
spiceweasel.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
# -*- encoding: utf-8 -*-
require File.join(File.dirname(__FILE__), *%w[lib spiceweasel version])
Gem::Specification.new do |s|
s.name = "spiceweasel"
s.version = Spiceweasel::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Matt Ray", "Elliot Crosby-McCullough"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/mattray/spiceweasel"
s.summary = %q{CLI for generating Chef knife commands from a simple YAML file.}
s.description = %q{Provides a CLI tool for generating knife commands to build Chef-managed infrastructure from a simple YAML or JSON file.}
s.rubyforge_project = "spiceweasel"
s.files = Dir.glob('{bin,lib}/**/*') + ['README.md']
s.test_files = Dir.glob('spec/**/*')
s.executables = Dir.glob('bin/**/*').map{ |f| File.basename(f) }
s.require_path = "lib"
s.add_dependency('json')
s.add_dependency('mixlib-cli')
s.add_development_dependency('rspec')
end