mirror of
https://github.com/samsonjs/simple_oauth.git
synced 2026-03-25 08:45:54 +00:00
24 lines
841 B
Ruby
24 lines
841 B
Ruby
# 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.files = `git ls-files`.split($\)
|
|
gem.test_files = gem.files.grep(/^test\//)
|
|
gem.require_paths = ["lib"]
|
|
end
|