summaryrefslogtreecommitdiff
path: root/chef-zero.gemspec
diff options
context:
space:
mode:
authorSeth Vargo <sethvargo@gmail.com>2013-05-17 01:15:35 -0400
committerSeth Vargo <sethvargo@gmail.com>2013-05-19 18:09:05 -0500
commit1302b6632755d0f4b9a131ad9afce6f14a75f0aa (patch)
tree78f3f15f3148f54b4c9ebbe5eb50936e15e31230 /chef-zero.gemspec
parentbbaa9f2f0f732d82c603a0b4fd3a0a667aba4383 (diff)
downloadchef-zero-1302b6632755d0f4b9a131ad9afce6f14a75f0aa.tar.gz
Add rake as a dep
Diffstat (limited to 'chef-zero.gemspec')
-rw-r--r--chef-zero.gemspec5
1 files changed, 2 insertions, 3 deletions
diff --git a/chef-zero.gemspec b/chef-zero.gemspec
index dce6c94..4cfd07c 100644
--- a/chef-zero.gemspec
+++ b/chef-zero.gemspec
@@ -5,8 +5,6 @@ Gem::Specification.new do |s|
s.name = 'chef-zero'
s.version = ChefZero::VERSION
s.platform = Gem::Platform::RUBY
- s.has_rdoc = true
- s.extra_rdoc_files = ['README.rdoc', 'LICENSE']
s.summary = 'Self-contained, easy-setup, fast-start in-memory Chef server for testing and solo setup purposes'
s.description = s.summary
s.author = 'John Keiser'
@@ -19,10 +17,11 @@ Gem::Specification.new do |s|
s.add_dependency 'hashie', '~> 2.0'
# s.add_development_dependency 'chef-pdeant'
+ s.add_development_dependency 'rake'
s.bindir = 'bin'
s.executables = ['chef-zero']
s.require_path = 'lib'
- s.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob('{lib,spec}/**/*')
+ s.files = %w(LICENSE README.md Rakefile) + Dir.glob('{lib,spec}/**/*')
end