forked from jkeiser/knife-easybake
-
Notifications
You must be signed in to change notification settings - Fork 1
/
knife-easybake.gemspec
27 lines (24 loc) · 965 Bytes
/
knife-easybake.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
$:.unshift(File.dirname(__FILE__) + '/lib')
require 'knife_easybake/version'
Gem::Specification.new do |s|
s.name = "knife-easybake"
s.version = KnifeEasybake::VERSION
s.license = 'Apache 2.0'
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
s.extra_rdoc_files = ["README.rdoc", "LICENSE"]
s.summary = "Making Easybake Possible"
s.description = s.summary
s.author = "John Keiser"
s.email = "[email protected]"
s.homepage = "http://www.opscode.com"
# We need a more recent version of mixlib-cli in order to support --no- options.
# ... but, we can live with those options not working, if it means the plugin
# can be included with apps that have restrictive Gemfile.locks.
# s.add_dependency "mixlib-cli", ">= 1.2.2"
s.add_dependency 'mechanize'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rake'
s.require_path = 'lib'
s.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("{lib,spec}/**/*")
end