Add #licenses declaration to gemspec

This commit is contained in:
Erik Michaels-Ober 2012-11-17 20:33:55 -08:00
parent 2cfe563d46
commit 2e98c7462b
4 changed files with 39 additions and 39 deletions

View File

@ -1,4 +1,4 @@
--markup markdown --markup markdown
--markup-provider maruku --markup-provider maruku
- -
LICENSE LICENSE.md

View File

@ -1,4 +1,4 @@
Copyright (c) 2010-2011 Michael Bleigh and Intridea, Inc. Copyright (c) 2010-2013 Michael Bleigh and Intridea, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -143,23 +143,22 @@ OmniAuth is tested under 1.8.7, 1.9.2, 1.9.3, JRuby (1.8 mode), and Rubinius
(1.8 and 1.9 modes). (1.8 and 1.9 modes).
## License ## License
Copyright (c) 2010-2013 Michael Bleigh and Intridea, Inc.
Copyright (c) 2011 Intridea, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
Permission is hereby granted, free of charge, to any person obtaining a The above copyright notice and this permission notice shall be included in
copy of this software and associated documentation files (the "Software"), all copies or substantial portions of the Software.
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
in all copies or substantial portions of the Software. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER THE SOFTWARE.
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

View File

@ -1,27 +1,28 @@
# encoding: utf-8 # encoding: utf-8
require File.expand_path('../lib/omniauth/version', __FILE__) require File.expand_path('../lib/omniauth/version', __FILE__)
Gem::Specification.new do |gem| Gem::Specification.new do |spec|
gem.name = 'omniauth' spec.name = 'omniauth'
gem.description = %q{A generalized Rack framework for multiple-provider authentication.} spec.description = %q{A generalized Rack framework for multiple-provider authentication.}
gem.authors = ['Michael Bleigh', 'Erik Michaels-Ober'] spec.authors = ['Michael Bleigh', 'Erik Michaels-Ober']
gem.email = ['michael@intridea.com', 'sferik@gmail.com'] spec.email = ['michael@intridea.com', 'sferik@gmail.com']
gem.add_runtime_dependency 'rack' spec.add_runtime_dependency 'rack'
gem.add_runtime_dependency 'hashie', '~> 1.2' spec.add_runtime_dependency 'hashie', '~> 1.2'
gem.add_development_dependency 'maruku' spec.add_development_dependency 'maruku'
gem.add_development_dependency 'simplecov' spec.add_development_dependency 'simplecov'
gem.add_development_dependency 'rack-test' spec.add_development_dependency 'rack-test'
gem.add_development_dependency 'rake' spec.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '~> 2.8' spec.add_development_dependency 'rspec', '~> 2.8'
gem.add_development_dependency 'yard' spec.add_development_dependency 'yard'
gem.version = OmniAuth::VERSION spec.version = OmniAuth::VERSION
gem.files = `git ls-files`.split("\n") spec.files = `git ls-files`.split("\n")
gem.homepage = 'http://github.com/intridea/omniauth' spec.homepage = 'http://github.com/intridea/omniauth'
gem.require_paths = ['lib'] spec.licenses = ['MIT']
gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if gem.respond_to? :required_rubygems_version= spec.require_paths = ['lib']
gem.summary = gem.description spec.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") spec.summary = spec.description
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
end end