forked from nov/openid_connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openid_connect.gemspec
29 lines (28 loc) · 1.21 KB
/
openid_connect.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
Gem::Specification.new do |s|
s.name = "openid_connect"
s.version = File.read("VERSION")
s.authors = ["nov matake"]
s.email = ["nov@matake.jp"]
s.homepage = "https://github.com/nov/openid_connect"
s.summary = %q{OpenID Connect Server & Client Library}
s.description = %q{OpenID Connect Server & Client Library}
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency "tzinfo"
s.add_runtime_dependency "attr_required", ">= 1.0.0"
s.add_runtime_dependency "activemodel"
s.add_runtime_dependency "validate_url"
s.add_runtime_dependency "validate_email"
s.add_runtime_dependency "json-jwt", ">= 1.5.0"
s.add_runtime_dependency "swd", ">= 1.0.0"
s.add_runtime_dependency "webfinger", ">= 1.0.1"
s.add_runtime_dependency "rack-oauth2", ">= 1.6.1"
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "rspec-its"
s.add_development_dependency "webmock"
s.add_development_dependency "simplecov"
end