-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzaikio-jwt_auth.gemspec
31 lines (25 loc) · 1.21 KB
/
zaikio-jwt_auth.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
30
31
$LOAD_PATH.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "zaikio/jwt_auth/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "zaikio-jwt_auth"
spec.version = Zaikio::JWTAuth::VERSION
spec.authors = ["crispymtn", "Jalyna Schröder", "Martin Spickermann"]
spec.email = ["op@crispymtn.com", "js@crispymtn.com", "spickermann@gmail.com"]
spec.homepage = "https://github.com/zaikio/zaikio-jwt_auth"
spec.summary = "JWT-Based authentication and authorization with Zaikio"
spec.description = "JWT-Based authentication and authorization with Zaikio."
spec.license = "MIT"
if spec.respond_to?(:metadata)
spec.metadata["changelog_uri"] = "https://github.com/zaikio/zaikio-jwt_auth/blob/main/CHANGELOG.md"
spec.metadata["source_code_uri"] = "https://github.com/zaikio/zaikio-jwt_auth"
end
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.required_ruby_version = ">= 2.6.5"
spec.add_dependency "activejob"
spec.add_dependency "oj", ">= 3.0.0"
spec.add_dependency "railties", ">= 5.0.0"
# Authorization tokens
spec.add_dependency "jwt", ">= 2.2.1"
end