mirror of
https://github.com/samsonjs/simple_oauth.git
synced 2026-04-27 14:57:45 +00:00
Add #licenses declaration to gemspec
This commit is contained in:
parent
365ca8b930
commit
496a6726ca
1 changed files with 15 additions and 14 deletions
|
|
@ -1,20 +1,21 @@
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
Gem::Specification.new do |gem|
|
Gem::Specification.new do |spec|
|
||||||
gem.name = 'simple_oauth'
|
spec.name = 'simple_oauth'
|
||||||
gem.version = '0.1.9'
|
spec.version = '0.1.9'
|
||||||
|
|
||||||
gem.authors = ["Steve Richert", "Erik Michaels-Ober"]
|
spec.authors = ["Steve Richert", "Erik Michaels-Ober"]
|
||||||
gem.email = ['steve.richert@gmail.com', 'sferik@gmail.com']
|
spec.email = ['steve.richert@gmail.com', 'sferik@gmail.com']
|
||||||
gem.description = 'Simply builds and verifies OAuth headers'
|
spec.description = 'Simply builds and verifies OAuth headers'
|
||||||
gem.summary = gem.description
|
spec.summary = spec.description
|
||||||
gem.homepage = 'https://github.com/laserlemon/simple_oauth'
|
spec.homepage = 'https://github.com/laserlemon/simple_oauth'
|
||||||
|
spec.licenses = ['MIT']
|
||||||
|
|
||||||
gem.add_development_dependency 'rake'
|
spec.add_development_dependency 'rake'
|
||||||
gem.add_development_dependency 'rspec', '~> 2.0'
|
spec.add_development_dependency 'rspec', '~> 2.0'
|
||||||
gem.add_development_dependency 'simplecov'
|
spec.add_development_dependency 'simplecov'
|
||||||
|
|
||||||
gem.files = `git ls-files`.split($\)
|
spec.files = `git ls-files`.split($\)
|
||||||
gem.test_files = gem.files.grep(/^test\//)
|
spec.test_files = spec.files.grep(/^test\//)
|
||||||
gem.require_paths = ["lib"]
|
spec.require_paths = ["lib"]
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue