summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NOTICE4
-rw-r--r--README.md (renamed from README.rdoc)20
-rw-r--r--mixlib-authentication.gemspec11
3 files changed, 16 insertions, 19 deletions
diff --git a/NOTICE b/NOTICE
index d48b64f..04a2054 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,7 +1,7 @@
Mixlib::Authentication NOTICE
=================
-Developed at Opscode (http://www.opscode.com).
+Developed at Chef (https://www.chef.io/).
- * Copyright 2009, Opscode, Inc. <legal@opscode.com>
+ * Copyright 2009-2016, Chef Software, Inc. <legal@chef.io>
diff --git a/README.rdoc b/README.md
index 296de03..b777b18 100644
--- a/README.rdoc
+++ b/README.md
@@ -1,13 +1,14 @@
-== Mixlib::Authentication
+# Mixlib::Authentication
+[![Build Status Master](https://travis-ci.org/chef/mixlib-authentication.svg?branch=master)](https://travis-ci.org/chef/mixlib-authentication) [![Gem Version](https://badge.fury.io/rb/mixlib-authentication.svg)](https://badge.fury.io/rb/mixlib-authentication)
-Mixlib::Authentication provides a class-based header signing authentication object, like the one used in Chef.
+Mixlib::Authentication provides a class-based header signing authentication object, like the one used in Chef.
-== License
-
-Author:: Christopher Brown (<cb@opscode.com>)
-Copyright:: Copyright (c) 2009 Opscode, Inc.
-License:: Apache License, Version 2.0
+## License
+- Author:: Christopher Brown ([cb@chef.io](mailto:cb@chef.io))
+- Copyright:: Copyright (c) 2009-2016 Chef Software, Inc.
+- License:: Apache License, Version 2.0
+```text
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
@@ -19,7 +20,4 @@ distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-
-== Issue Tracker
-
-Report any issues via Opscode Jira instance at http://tickets.opscode.com against Chef project.
+```
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" }