forked from oauth-xx/oauth2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoauth2.gemspec
29 lines (28 loc) · 1.36 KB
/
oauth2.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'oauth2/version'
Gem::Specification.new do |spec|
spec.add_development_dependency 'bundler', '~> 1.0'
spec.add_dependency 'faraday', ['>= 0.8', '< 0.10']
spec.add_dependency 'multi_json', '~> 1.3'
spec.add_dependency 'multi_xml', '~> 0.5'
spec.add_dependency 'rack', '~> 1.2'
spec.add_dependency 'jwt', '~> 0.1.8'
spec.authors = ['Michael Bleigh', 'Erik Michaels-Ober']
spec.cert_chain = %w(certs/sferik.pem)
spec.description = %q{A Ruby wrapper for the OAuth 2.0 protocol built with a similar style to the original OAuth spec.}
spec.email = ['[email protected]', '[email protected]']
spec.files = %w(.document CONTRIBUTING.md LICENSE.md README.md Rakefile oauth2.gemspec)
spec.files += Dir.glob('lib/**/*.rb')
spec.files += Dir.glob('spec/**/*')
spec.homepage = 'http://github.com/intridea/oauth2'
spec.licenses = ['MIT']
spec.name = 'oauth2'
spec.require_paths = ['lib']
spec.required_rubygems_version = '>= 1.3.5'
spec.signing_key = File.expand_path('~/.gem/private_key.pem') if $PROGRAM_NAME =~ /gem\z/
spec.summary = %q{A Ruby wrapper for the OAuth 2.0 protocol.}
spec.test_files = Dir.glob('spec/**/*')
spec.version = OAuth2::Version
end