mirror of
https://github.com/samsonjs/simple_oauth.git
synced 2026-03-25 08:45:54 +00:00
15 lines
597 B
Ruby
15 lines
597 B
Ruby
Gem::Specification.new do |spec|
|
|
spec.add_development_dependency 'bundler', '~> 1.0'
|
|
spec.name = 'simple_oauth'
|
|
spec.version = '0.3.0'
|
|
|
|
spec.authors = ['Steve Richert', 'Erik Michaels-Ober']
|
|
spec.email = %w(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 = %w(MIT)
|
|
|
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.start_with?('test/') }
|
|
spec.require_paths = %w(lib)
|
|
end
|