forked from authzed/authzed-rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthzed.gemspec
22 lines (20 loc) · 939 Bytes
/
authzed.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |s|
s.name = "authzed"
s.version = "0.5.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 = "[email protected]"
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.0"
end