diff options
author | Seth Chisamore <schisamo@opscode.com> | 2012-10-30 11:47:46 -0400 |
---|---|---|
committer | Seth Chisamore <schisamo@opscode.com> | 2012-10-30 13:08:53 -0400 |
commit | 555b2c1190214639aeea2a395d1f0436203fc037 (patch) | |
tree | 39fb997ff05290612de58ad4e091b52dc1ef72a8 /chef.gemspec | |
parent | 7392a7396049ed296320840d0f5b2e5e3ed9bc67 (diff) | |
download | chef-555b2c1190214639aeea2a395d1f0436203fc037.tar.gz |
[OC-3564] move README to markdown format
Diffstat (limited to 'chef.gemspec')
-rw-r--r-- | chef.gemspec | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chef.gemspec b/chef.gemspec index c807a85bf2..6a392f8abe 100644 --- a/chef.gemspec +++ b/chef.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |s| s.version = Chef::VERSION s.platform = Gem::Platform::RUBY s.has_rdoc = true - s.extra_rdoc_files = ["README.rdoc", "LICENSE" ] + s.extra_rdoc_files = ["README.md", "CONTRIBUTING.md", "LICENSE" ] s.summary = "A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure." s.description = s.summary s.author = "Adam Jacob" @@ -27,7 +27,7 @@ Gem::Specification.new do |s| s.add_dependency "net-ssh-multi", "~> 1.1.0" # CHEF-3027: The knife-cloud plugins require newer features from highline, core chef should not. s.add_dependency "highline", ">= 1.6.9" - %w{erubis moneta uuidtools}.each { |gem| s.add_dependency gem } + %w{erubis moneta}.each { |gem| s.add_dependency gem } # development_dependency thin: eventmachine 0.12.10 doesn't support Ruby 1.9 on Windows %w(rdoc sdoc ronn rake rack rspec_junit_formatter).each { |gem| s.add_development_dependency gem } @@ -36,5 +36,5 @@ Gem::Specification.new do |s| s.bindir = "bin" s.executables = %w( chef-client chef-solo knife chef-shell shef ) s.require_path = 'lib' - s.files = %w(Rakefile LICENSE README.rdoc) + Dir.glob("{distro,lib,tasks,spec}/**/*") + s.files = %w(Rakefile LICENSE README.md CONTRIBUTING.md) + Dir.glob("{distro,lib,tasks,spec}/**/*") end |