mirror of
https://github.com/samsonjs/simple_oauth.git
synced 2026-03-25 08:45:54 +00:00
Clean up the gemspec
This commit is contained in:
parent
99a936b98d
commit
e8fc491ed0
1 changed files with 14 additions and 10 deletions
|
|
@ -1,20 +1,24 @@
|
|||
# encoding: utf-8
|
||||
|
||||
require File.expand_path('../lib/simple_oauth/version', __FILE__)
|
||||
|
||||
Gem::Specification.new do |gem|
|
||||
gem.name = 'simple_oauth'
|
||||
gem.version = SimpleOAuth::Version::STRING
|
||||
|
||||
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'
|
||||
|
||||
gem.add_development_dependency 'minitest'
|
||||
gem.add_development_dependency 'mocha', '~> 0.10.0'
|
||||
gem.add_development_dependency 'rake'
|
||||
gem.add_development_dependency 'simplecov'
|
||||
gem.add_development_dependency 'yard'
|
||||
gem.authors = ["Steve Richert", "Erik Michaels-Ober"]
|
||||
gem.description = 'Simply builds and verifies OAuth headers'
|
||||
gem.email = ['steve.richert@gmail.com', 'sferik@gmail.com']
|
||||
gem.files = `git ls-files`.split("\n")
|
||||
gem.homepage = 'http://github.com/laserlemon/simple_oauth'
|
||||
gem.name = 'simple_oauth'
|
||||
gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
|
||||
gem.summary = gem.description
|
||||
gem.test_files = `git ls-files -- test/**/*_test.rb`.split("\n")
|
||||
gem.version = SimpleOAuth::Version::STRING
|
||||
|
||||
gem.files = `git ls-files`.split($\)
|
||||
gem.test_files = gem.files.grep(/^test\//)
|
||||
gem.require_paths = ["lib"]
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue