forked from websterclay/knife-github-cookbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathknife-github-cookbooks.gemspec
23 lines (21 loc) · 987 Bytes
/
knife-github-cookbooks.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "knife-github-cookbooks/version"
Gem::Specification.new do |s|
s.name = "knife-github-cookbooks"
s.version = Knife::GithubCookbooks::VERSION
s.platform = Gem::Platform::RUBY
s.has_rdoc = false
s.extra_rdoc_files = ["LICENSE" ]
s.authors = ["Jesse Newland"]
s.email = ["jesse@websterclay.com"]
s.homepage = "https://github.com/websterclay/knife-github-cookbooks"
s.summary = %q{Github Cookbook installation support for Chef's Knife Command}
s.description = s.summary
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "launchy", "~> 0.4.0"
s.add_dependency "chef", "~> 0.10.0"
end