-
Notifications
You must be signed in to change notification settings - Fork 11
/
authzed.gemspec
26 lines (24 loc) · 1.11 KB
/
authzed.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
Gem::Specification.new do |s|
s.name = "authzed"
# NOTE: version is managed programmatically at release time
# and reflects the associated git tag.
s.version = "1.0.0"
s.licenses = ["Apache-2.0"]
s.summary = "Ruby bindings for Authzed API"
s.description = "Authzed is the best way to build robust and scalable permissions systems. See https://authzed.com for more details."
s.authors = ["Authzed"]
s.email = "support@authzed.com"
s.files = Dir.glob(%w[LICENSE README.md {exe,lib}/**/*]).reject { |f| File.directory?(f) }
s.homepage = "https://authzed.com"
s.metadata = {
"bug_tracker_uri" => "https://github.com/authzed/authzed-rb/issues",
"github_repo" => "ssh://github.com/authzed/authzed-rb",
"homepage_uri" => "https://authzed.com",
"source_code_uri" => "https://github.com/authzed/authzed-rb",
}
s.add_runtime_dependency "grpc", "~> 1.41"
s.add_runtime_dependency "grpc-tools", "~> 1.41"
s.add_development_dependency "rspec", "~> 3"
s.add_development_dependency "rake", "~> 13"
s.add_development_dependency "bump", "~> 0.10"
end