diff options
author | Tim Smith <tsmith84@gmail.com> | 2016-01-19 11:33:13 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2016-01-20 09:22:41 -0800 |
commit | d1c337a6b64134359c8cd3d69b4a93e351933319 (patch) | |
tree | 67c28f31f72f42aab3f018903f5276e583de9bac /mixlib-authentication.gemspec | |
parent | d7455a3b4f7ca80199f1b7647b0f3a2be06705f5 (diff) | |
download | mixlib-authentication-d1c337a6b64134359c8cd3d69b4a93e351933319.tar.gz |
rdoc -> md and updates
Diffstat (limited to 'mixlib-authentication.gemspec')
-rw-r--r-- | mixlib-authentication.gemspec | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/mixlib-authentication.gemspec b/mixlib-authentication.gemspec index 8e7613b..ebb48f3 100644 --- a/mixlib-authentication.gemspec +++ b/mixlib-authentication.gemspec @@ -5,19 +5,18 @@ Gem::Specification.new do |s| s.name = "mixlib-authentication" s.version = Mixlib::Authentication::VERSION s.platform = Gem::Platform::RUBY - s.has_rdoc = true - s.extra_rdoc_files = ["README.rdoc", "LICENSE", 'NOTICE'] s.summary = "Mixes in simple per-request authentication" s.description = s.summary - s.author = "Opscode, Inc." - s.email = "info@opscode.com" - s.homepage = "http://www.opscode.com" + s.license = "Apache-2.0" + s.author = "Chef Software, Inc." + s.email = "info@chef.io" + s.homepage = "https://www.chef.io" # Uncomment this to add a dependency s.add_dependency "mixlib-log" 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) } %w(rspec-core rspec-expectations rspec-mocks).each { |gem| s.add_dependency gem, "~> 3.2" } |