-
Notifications
You must be signed in to change notification settings - Fork 1
/
kknife.gemspec
26 lines (21 loc) · 938 Bytes
/
kknife.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 = 'kknife'
s.version = '0.2.0'
s.date = '2015-10-27'
s.platform = Gem::Platform::RUBY
s.extra_rdoc_files = %w( LICENSE README.md )
s.summary = "Shortcuts for the chef knife command"
s.description = "k shortcut commands for knife"
s.author = "Matt Hoyle"
s.email = "[email protected]"
s.homepage = "http://deployable.co"
s.license = 'Apache'
# s.add_dependency "chef", "~> 12"
# s.add_dependency "trollop", "~> 2.0"
# %w(rspec-core rspec-expectations rspec-mocks).each { |gem| s.add_development_dependency gem, "~> 3.2" }
# s.add_development_dependency 'rest_client', "~> 1.6"
s.bindir = "bin"
s.executables = %w( k )
s.require_path = 'lib'
s.files = %w( LICENSE README.md ) + Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
end