summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2016-03-16 10:19:38 -0700
committerTim Smith <tsmith84@gmail.com>2016-03-16 10:21:41 -0700
commit0b831a7679bd827657146b0c182dbbb8a27f45a8 (patch)
tree254537b2c4029a1eabee6c37da22f59358a6036e
parentf0ea87ba9dec912a7f496a0f685735696e14f526 (diff)
downloadmixlib-cli-0b831a7679bd827657146b0c182dbbb8a27f45a8.tar.gz
Opscode -> Chef, add chefstyle, pin rake
-rw-r--r--mixlib-cli.gemspec14
1 files changed, 8 insertions, 6 deletions
diff --git a/mixlib-cli.gemspec b/mixlib-cli.gemspec
index 049d88c..d131f9e 100644
--- a/mixlib-cli.gemspec
+++ b/mixlib-cli.gemspec
@@ -6,20 +6,22 @@ Gem::Specification.new do |s|
s.version = Mixlib::CLI::VERSION
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
- s.extra_rdoc_files = ["README.rdoc", "LICENSE", "NOTICE"]
+ s.extra_rdoc_files = ["README.md", "LICENSE", "NOTICE"]
s.summary = "A simple mixin for CLI interfaces, including option parsing"
s.description = s.summary
- s.author = "Opscode, Inc."
- s.email = "info@opscode.com"
- s.homepage = "http://www.opscode.com"
+ s.author = "Chef Software, Inc."
+ s.email = "info@chef.io"
+ s.homepage = "https://www.chef.io"
+ s.license = "Apache-2.0"
# Uncomment this to add a dependency
#s.add_dependency "mixlib-log"
- s.add_development_dependency "rake"
+ s.add_development_dependency "rake", "< 11.0"
s.add_development_dependency "rspec", "~> 2.14"
s.add_development_dependency "rdoc"
+ s.add_development_dependency "chefstyle", "~> 0.3"
s.require_path = "lib"
- s.files = %w{LICENSE README.rdoc Gemfile Rakefile NOTICE} + Dir.glob("*.gemspec") +
+ s.files = %w{LICENSE README.md Gemfile Rakefile NOTICE} + Dir.glob("*.gemspec") +
Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
end