mirror of
https://github.com/samsonjs/simple_oauth.git
synced 2026-03-25 08:45:54 +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
|
||||
|
||||
Gem::Specification.new do |gem|
|
||||
gem.name = 'simple_oauth'
|
||||
gem.version = '0.1.9'
|
||||
Gem::Specification.new do |spec|
|
||||
spec.name = 'simple_oauth'
|
||||
spec.version = '0.1.9'
|
||||
|
||||
gem.authors = ["Steve Richert", "Erik Michaels-Ober"]
|
||||
gem.email = ['steve.richert@gmail.com', 'sferik@gmail.com']
|
||||
gem.description = 'Simply builds and verifies OAuth headers'
|
||||
gem.summary = gem.description
|
||||
gem.homepage = 'https://github.com/laserlemon/simple_oauth'
|
||||
spec.authors = ["Steve Richert", "Erik Michaels-Ober"]
|
||||
spec.email = ['steve.richert@gmail.com', 'sferik@gmail.com']
|
||||
spec.description = 'Simply builds and verifies OAuth headers'
|
||||
spec.summary = spec.description
|
||||
spec.homepage = 'https://github.com/laserlemon/simple_oauth'
|
||||
spec.licenses = ['MIT']
|
||||
|
||||
gem.add_development_dependency 'rake'
|
||||
gem.add_development_dependency 'rspec', '~> 2.0'
|
||||
gem.add_development_dependency 'simplecov'
|
||||
spec.add_development_dependency 'rake'
|
||||
spec.add_development_dependency 'rspec', '~> 2.0'
|
||||
spec.add_development_dependency 'simplecov'
|
||||
|
||||
gem.files = `git ls-files`.split($\)
|
||||
gem.test_files = gem.files.grep(/^test\//)
|
||||
gem.require_paths = ["lib"]
|
||||
spec.files = `git ls-files`.split($\)
|
||||
spec.test_files = spec.files.grep(/^test\//)
|
||||
spec.require_paths = ["lib"]
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue