-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathoauthenticator.gemspec
29 lines (25 loc) · 1.01 KB
/
oauthenticator.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.any? { |lp| File.expand_path(lp) == File.expand_path(lib) }
require 'oauthenticator/version'
Gem::Specification.new do |spec|
spec.name = 'oauthenticator'
spec.version = OAuthenticator::VERSION
spec.authors = ["Ethan"]
spec.email = ["ethan@unth"]
spec.summary = %q(OAuth 1.0 request signing and authentication)
spec.description = %q(OAuthenticator signs and authenticates OAuth 1.0 requests)
spec.homepage = %q(https://github.com/notEthan/oauthenticator)
spec.license = 'MIT'
spec.files = [
*Dir['lib/**/*'],
'.yardopts',
'LICENSE.txt',
'CHANGELOG.md',
'README.md',
].reject { |f| File.lstat(f).ftype == 'directory' }
spec.require_paths = ['lib']
spec.add_runtime_dependency 'rack', '>= 1.4', '< 4.0'
spec.add_runtime_dependency 'json'
spec.add_runtime_dependency 'faraday', '>= 0.9', '< 3.0'
spec.add_runtime_dependency 'addressable', '~> 2.3'
end