-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
rack-oauth2.gemspec
28 lines (28 loc) · 1.21 KB
/
rack-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
Gem::Specification.new do |s|
s.name = 'rack-oauth2'
s.version = File.read('VERSION')
s.authors = ['nov matake']
s.description = %q{OAuth 2.0 Server & Client Library. Both Bearer token type are supported.}
s.summary = %q{OAuth 2.0 Server & Client Library - Both Bearer token type are supported}
s.email = '[email protected]'
s.extra_rdoc_files = ['LICENSE', 'README.rdoc']
s.rdoc_options = ['--charset=UTF-8']
s.homepage = 'https://github.com/nov/rack-oauth2'
s.license = 'MIT'
s.require_paths = ['lib']
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.add_runtime_dependency 'rack', '>= 2.1.0'
s.add_runtime_dependency 'faraday', '~> 2.0'
s.add_runtime_dependency 'faraday-follow_redirects'
s.add_runtime_dependency 'activesupport'
s.add_runtime_dependency 'attr_required'
s.add_runtime_dependency 'json-jwt', '>= 1.11.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rspec-its'
s.add_development_dependency 'webmock'
s.add_development_dependency 'rexml'
end