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-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
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).
## 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
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:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
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.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
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
require File.expand_path('../lib/omniauth/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'omniauth'
gem.description = %q{A generalized Rack framework for multiple-provider authentication.}
gem.authors = ['Michael Bleigh', 'Erik Michaels-Ober']
gem.email = ['michael@intridea.com', 'sferik@gmail.com']
Gem::Specification.new do |spec|
spec.name = 'omniauth'
spec.description = %q{A generalized Rack framework for multiple-provider authentication.}
spec.authors = ['Michael Bleigh', 'Erik Michaels-Ober']
spec.email = ['michael@intridea.com', 'sferik@gmail.com']
gem.add_runtime_dependency 'rack'
gem.add_runtime_dependency 'hashie', '~> 1.2'
spec.add_runtime_dependency 'rack'
spec.add_runtime_dependency 'hashie', '~> 1.2'
gem.add_development_dependency 'maruku'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'rack-test'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '~> 2.8'
gem.add_development_dependency 'yard'
spec.add_development_dependency 'maruku'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'rack-test'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '~> 2.8'
spec.add_development_dependency 'yard'
gem.version = OmniAuth::VERSION
gem.files = `git ls-files`.split("\n")
gem.homepage = 'http://github.com/intridea/omniauth'
gem.require_paths = ['lib']
gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if gem.respond_to? :required_rubygems_version=
gem.summary = gem.description
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.version = OmniAuth::VERSION
spec.files = `git ls-files`.split("\n")
spec.homepage = 'http://github.com/intridea/omniauth'
spec.licenses = ['MIT']
spec.require_paths = ['lib']
spec.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
spec.summary = spec.description
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
end