From d1c337a6b64134359c8cd3d69b4a93e351933319 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Tue, 19 Jan 2016 11:33:13 -0800 Subject: rdoc -> md and updates --- NOTICE | 4 ++-- README.md | 23 +++++++++++++++++++++++ README.rdoc | 25 ------------------------- mixlib-authentication.gemspec | 11 +++++------ 4 files changed, 30 insertions(+), 33 deletions(-) create mode 100644 README.md delete mode 100644 README.rdoc 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. + * Copyright 2009-2016, Chef Software, Inc. diff --git a/README.md b/README.md new file mode 100644 index 0000000..b777b18 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# 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. + +## 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 + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +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. +``` diff --git a/README.rdoc b/README.rdoc deleted file mode 100644 index 296de03..0000000 --- a/README.rdoc +++ /dev/null @@ -1,25 +0,0 @@ -== Mixlib::Authentication - -Mixlib::Authentication provides a class-based header signing authentication object, like the one used in Chef. - -== License - -Author:: Christopher Brown () -Copyright:: Copyright (c) 2009 Opscode, Inc. -License:: Apache License, Version 2.0 - -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 - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -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" } -- cgit v1.2.1