-
Notifications
You must be signed in to change notification settings - Fork 556
/
Copy pathgoogle-cloud-api_gateway-v1.gemspec
28 lines (21 loc) · 1.56 KB
/
google-cloud-api_gateway-v1.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
# -*- ruby -*-
# encoding: utf-8
require File.expand_path("lib/google/cloud/api_gateway/v1/version", __dir__)
Gem::Specification.new do |gem|
gem.name = "google-cloud-api_gateway-v1"
gem.version = Google::Cloud::ApiGateway::V1::VERSION
gem.authors = ["Google LLC"]
gem.email = "[email protected]"
gem.description = "API Gateway enables you to provide secure access to your backend services through a well-defined REST API that is consistent across all of your services, regardless of the service implementation. Clients consume your REST APIS to implement standalone apps for a mobile device or tablet, through apps running in a browser, or through any other type of app that can make a request to an HTTP endpoint. Note that google-cloud-api_gateway-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-api_gateway instead. See the readme for more details."
gem.summary = "API Client library for the API Gateway V1 API"
gem.homepage = "https://github.com/googleapis/google-cloud-ruby"
gem.license = "Apache-2.0"
gem.platform = Gem::Platform::RUBY
gem.files = `git ls-files -- lib/*`.split("\n") +
`git ls-files -- proto_docs/*`.split("\n") +
["README.md", "LICENSE.md", "AUTHENTICATION.md", ".yardopts"]
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 3.0"
gem.add_dependency "gapic-common", ">= 0.25.0", "< 2.a"
gem.add_dependency "google-cloud-errors", "~> 1.0"
end