google-cloud-language 0.36.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yardopts +3 -2
- data/AUTHENTICATION.md +62 -88
- data/LICENSE.md +201 -0
- data/MIGRATING.md +289 -0
- data/README.md +100 -31
- data/lib/google/cloud/language/version.rb +1 -1
- data/lib/google/cloud/language.rb +88 -119
- data/lib/google-cloud-language.rb +19 -0
- metadata +74 -44
- data/LICENSE +0 -201
- data/lib/google/cloud/language/v1/credentials.rb +0 -41
- data/lib/google/cloud/language/v1/doc/google/cloud/language/v1/language_service.rb +0 -1039
- data/lib/google/cloud/language/v1/language_service_client.rb +0 -451
- data/lib/google/cloud/language/v1/language_service_client_config.json +0 -56
- data/lib/google/cloud/language/v1/language_service_pb.rb +0 -403
- data/lib/google/cloud/language/v1/language_service_services_pb.rb +0 -64
- data/lib/google/cloud/language/v1.rb +0 -148
- data/lib/google/cloud/language/v1beta2/credentials.rb +0 -41
- data/lib/google/cloud/language/v1beta2/doc/google/cloud/language/v1beta2/language_service.rb +0 -1049
- data/lib/google/cloud/language/v1beta2/language_service_client.rb +0 -451
- data/lib/google/cloud/language/v1beta2/language_service_client_config.json +0 -56
- data/lib/google/cloud/language/v1beta2/language_service_pb.rb +0 -404
- data/lib/google/cloud/language/v1beta2/language_service_services_pb.rb +0 -64
- data/lib/google/cloud/language/v1beta2.rb +0 -160
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# Copyright 2020 Google LLC
|
2
4
|
#
|
3
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -12,136 +14,103 @@
|
|
12
14
|
# See the License for the specific language governing permissions and
|
13
15
|
# limitations under the License.
|
14
16
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
# Require this file early so that the version constant gets defined before
|
20
|
+
# requiring "google/cloud". This is because google-cloud-core will load the
|
21
|
+
# entrypoint (gem name) file, which in turn re-requires this file (hence
|
22
|
+
# causing a require cycle) unless the version constant is already defined.
|
23
|
+
require "google/cloud/language/version"
|
24
|
+
|
25
|
+
require "googleauth"
|
26
|
+
gem "google-cloud-core"
|
27
|
+
require "google/cloud" unless defined? ::Google::Cloud.new
|
28
|
+
require "google/cloud/config"
|
15
29
|
|
16
|
-
|
17
|
-
|
30
|
+
# Set the default configuration
|
31
|
+
::Google::Cloud.configure.add_config! :language do |config|
|
32
|
+
config.add_field! :endpoint, "language.googleapis.com", match: ::String
|
33
|
+
config.add_field! :credentials, nil, match: [::String, ::Hash, ::Google::Auth::Credentials]
|
34
|
+
config.add_field! :scope, nil, match: [::Array, ::String]
|
35
|
+
config.add_field! :lib_name, nil, match: ::String
|
36
|
+
config.add_field! :lib_version, nil, match: ::String
|
37
|
+
config.add_field! :interceptors, nil, match: ::Array
|
38
|
+
config.add_field! :timeout, nil, match: ::Numeric
|
39
|
+
config.add_field! :metadata, nil, match: ::Hash
|
40
|
+
config.add_field! :retry_policy, nil, match: [::Hash, ::Proc]
|
41
|
+
config.add_field! :quota_project, nil, match: ::String
|
42
|
+
end
|
18
43
|
|
19
44
|
module Google
|
20
45
|
module Cloud
|
21
|
-
# rubocop:disable LineLength
|
22
|
-
|
23
|
-
##
|
24
|
-
# # Ruby Client for Cloud Natural Language API
|
25
|
-
#
|
26
|
-
# [Cloud Natural Language API][Product Documentation]:
|
27
|
-
# Provides natural language understanding technologies, such as sentiment
|
28
|
-
# analysis, entity recognition, entity sentiment analysis, and other text
|
29
|
-
# annotations, to developers.
|
30
|
-
# - [Product Documentation][]
|
31
|
-
#
|
32
|
-
# ## Quick Start
|
33
|
-
# In order to use this library, you first need to go through the following
|
34
|
-
# steps:
|
35
|
-
#
|
36
|
-
# 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
37
|
-
# 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
38
|
-
# 3. [Enable the Cloud Natural Language API.](https://console.cloud.google.com/apis/library/language.googleapis.com)
|
39
|
-
# 4. [Setup Authentication.](https://googleapis.dev/ruby/google-cloud-language/latest/file.AUTHENTICATION.html)
|
40
|
-
#
|
41
|
-
# ### Installation
|
42
|
-
# ```
|
43
|
-
# $ gem install google-cloud-language
|
44
|
-
# ```
|
45
|
-
#
|
46
|
-
# ### Next Steps
|
47
|
-
# - Read the [Cloud Natural Language API Product documentation][Product Documentation]
|
48
|
-
# to learn more about the product and see How-to Guides.
|
49
|
-
# - View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
|
50
|
-
# to see the full list of Cloud APIs that we cover.
|
51
|
-
#
|
52
|
-
# [Product Documentation]: https://cloud.google.com/natural-language
|
53
|
-
#
|
54
|
-
# ## Enabling Logging
|
55
|
-
#
|
56
|
-
# To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
57
|
-
# The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as shown below,
|
58
|
-
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
59
|
-
# that will write logs to [Stackdriver Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
60
|
-
# and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
61
|
-
#
|
62
|
-
# Configuring a Ruby stdlib logger:
|
63
|
-
#
|
64
|
-
# ```ruby
|
65
|
-
# require "logger"
|
66
|
-
#
|
67
|
-
# module MyLogger
|
68
|
-
# LOGGER = Logger.new $stderr, level: Logger::WARN
|
69
|
-
# def logger
|
70
|
-
# LOGGER
|
71
|
-
# end
|
72
|
-
# end
|
73
|
-
#
|
74
|
-
# # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
|
75
|
-
# module GRPC
|
76
|
-
# extend MyLogger
|
77
|
-
# end
|
78
|
-
# ```
|
79
|
-
#
|
80
46
|
module Language
|
81
|
-
# rubocop:enable LineLength
|
82
|
-
|
83
|
-
FILE_DIR = File.realdirpath(Pathname.new(__FILE__).join("..").join("language"))
|
84
|
-
|
85
|
-
AVAILABLE_VERSIONS = Dir["#{FILE_DIR}/*"]
|
86
|
-
.select { |file| File.directory?(file) }
|
87
|
-
.select { |dir| Google::Gax::VERSION_MATCHER.match(File.basename(dir)) }
|
88
|
-
.select { |dir| File.exist?(dir + ".rb") }
|
89
|
-
.map { |dir| File.basename(dir) }
|
90
|
-
|
91
47
|
##
|
48
|
+
# Create a new client object for LanguageService.
|
49
|
+
#
|
50
|
+
# By default, this returns an instance of
|
51
|
+
# [Google::Cloud::Language::V1::LanguageService::Client](https://googleapis.dev/ruby/google-cloud-language-v1/latest/Google/Cloud/Language/V1/LanguageService/Client.html)
|
52
|
+
# for version V1 of the API.
|
53
|
+
# However, you can specify specify a different API version by passing it in the
|
54
|
+
# `version` parameter. If the LanguageService service is
|
55
|
+
# supported by that API version, and the corresponding gem is available, the
|
56
|
+
# appropriate versioned client will be returned.
|
57
|
+
#
|
58
|
+
# ## About LanguageService
|
59
|
+
#
|
92
60
|
# Provides text analysis operations such as sentiment analysis and entity
|
93
61
|
# recognition.
|
94
62
|
#
|
95
|
-
# @param version [
|
96
|
-
#
|
97
|
-
#
|
98
|
-
#
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
#
|
112
|
-
#
|
113
|
-
#
|
114
|
-
#
|
115
|
-
#
|
116
|
-
#
|
117
|
-
#
|
118
|
-
#
|
119
|
-
#
|
120
|
-
#
|
121
|
-
#
|
122
|
-
#
|
123
|
-
#
|
124
|
-
#
|
125
|
-
#
|
126
|
-
#
|
127
|
-
#
|
128
|
-
#
|
129
|
-
#
|
130
|
-
#
|
131
|
-
#
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
63
|
+
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
64
|
+
# Defaults to `:v1`.
|
65
|
+
# @return [LanguageService::Client] A client object for the specified version.
|
66
|
+
#
|
67
|
+
def self.language_service version: :v1, &block
|
68
|
+
require "google/cloud/language/#{version.to_s.downcase}"
|
69
|
+
|
70
|
+
package_name = Google::Cloud::Language
|
71
|
+
.constants
|
72
|
+
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
|
73
|
+
.first
|
74
|
+
package_module = Google::Cloud::Language.const_get package_name
|
75
|
+
package_module.const_get(:LanguageService).const_get(:Client).new(&block)
|
76
|
+
end
|
77
|
+
|
78
|
+
##
|
79
|
+
# Configure the google-cloud-language library.
|
80
|
+
#
|
81
|
+
# The following configuration parameters are supported:
|
82
|
+
#
|
83
|
+
# * `credentials` (*type:* `String, Hash, Google::Auth::Credentials`) -
|
84
|
+
# The path to the keyfile as a String, the contents of the keyfile as a
|
85
|
+
# Hash, or a Google::Auth::Credentials object.
|
86
|
+
# * `lib_name` (*type:* `String`) -
|
87
|
+
# The library name as recorded in instrumentation and logging.
|
88
|
+
# * `lib_version` (*type:* `String`) -
|
89
|
+
# The library version as recorded in instrumentation and logging.
|
90
|
+
# * `interceptors` (*type:* `Array<GRPC::ClientInterceptor>`) -
|
91
|
+
# An array of interceptors that are run before calls are executed.
|
92
|
+
# * `timeout` (*type:* `Numeric`) -
|
93
|
+
# Default timeout in seconds.
|
94
|
+
# * `metadata` (*type:* `Hash{Symbol=>String}`) -
|
95
|
+
# Additional gRPC headers to be sent with the call.
|
96
|
+
# * `retry_policy` (*type:* `Hash`) -
|
97
|
+
# The retry policy. The value is a hash with the following keys:
|
98
|
+
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
99
|
+
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
100
|
+
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
101
|
+
# * `:retry_codes` (*type:* `Array<String>`) -
|
102
|
+
# The error codes that should trigger a retry.
|
103
|
+
#
|
104
|
+
# @return [::Google::Cloud::Config] The default configuration used by this library
|
105
|
+
#
|
106
|
+
def self.configure
|
107
|
+
yield ::Google::Cloud.configure.language if block_given?
|
137
108
|
|
138
|
-
|
139
|
-
version_module = Google::Cloud::Language
|
140
|
-
.constants
|
141
|
-
.select {|sym| sym.to_s.downcase == version.to_s.downcase}
|
142
|
-
.first
|
143
|
-
Google::Cloud::Language.const_get(version_module).new(*args, **kwargs)
|
109
|
+
::Google::Cloud.configure.language
|
144
110
|
end
|
145
111
|
end
|
146
112
|
end
|
147
113
|
end
|
114
|
+
|
115
|
+
helper_path = ::File.join __dir__, "language", "helpers.rb"
|
116
|
+
require "google/cloud/language/helpers" if ::File.file? helper_path
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2020 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/cloud/language" unless defined? Google::Cloud::Language::VERSION
|
metadata
CHANGED
@@ -1,111 +1,153 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-language
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name: google-
|
14
|
+
name: google-cloud-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.6'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1.
|
26
|
+
version: '1.6'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: google-cloud-language-v1
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: '0.4'
|
34
34
|
- - "<"
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version:
|
36
|
+
version: 2.a
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
41
|
- - ">="
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version:
|
43
|
+
version: '0.4'
|
44
44
|
- - "<"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version:
|
46
|
+
version: 2.a
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
|
-
name:
|
48
|
+
name: google-cloud-language-v1beta2
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
51
|
- - ">="
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
53
|
+
version: '0.4'
|
54
54
|
- - "<"
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
56
|
+
version: 2.a
|
57
57
|
type: :runtime
|
58
58
|
prerelease: false
|
59
59
|
version_requirements: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
61
|
- - ">="
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version:
|
63
|
+
version: '0.4'
|
64
64
|
- - "<"
|
65
65
|
- !ruby/object:Gem::Version
|
66
|
-
version:
|
66
|
+
version: 2.a
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
name: google-style
|
69
|
+
requirement: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - "~>"
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: 1.26.1
|
74
|
+
type: :development
|
75
|
+
prerelease: false
|
76
|
+
version_requirements: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - "~>"
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: 1.26.1
|
67
81
|
- !ruby/object:Gem::Dependency
|
68
82
|
name: minitest
|
69
83
|
requirement: !ruby/object:Gem::Requirement
|
70
84
|
requirements:
|
71
85
|
- - "~>"
|
72
86
|
- !ruby/object:Gem::Version
|
73
|
-
version: '5.
|
87
|
+
version: '5.16'
|
74
88
|
type: :development
|
75
89
|
prerelease: false
|
76
90
|
version_requirements: !ruby/object:Gem::Requirement
|
77
91
|
requirements:
|
78
92
|
- - "~>"
|
79
93
|
- !ruby/object:Gem::Version
|
80
|
-
version: '5.
|
94
|
+
version: '5.16'
|
81
95
|
- !ruby/object:Gem::Dependency
|
82
|
-
name:
|
96
|
+
name: minitest-focus
|
83
97
|
requirement: !ruby/object:Gem::Requirement
|
84
98
|
requirements:
|
85
99
|
- - "~>"
|
86
100
|
- !ruby/object:Gem::Version
|
87
|
-
version: '
|
101
|
+
version: '1.1'
|
88
102
|
type: :development
|
89
103
|
prerelease: false
|
90
104
|
version_requirements: !ruby/object:Gem::Requirement
|
91
105
|
requirements:
|
92
106
|
- - "~>"
|
93
107
|
- !ruby/object:Gem::Version
|
94
|
-
version: '
|
108
|
+
version: '1.1'
|
95
109
|
- !ruby/object:Gem::Dependency
|
96
|
-
name:
|
110
|
+
name: minitest-rg
|
97
111
|
requirement: !ruby/object:Gem::Requirement
|
98
112
|
requirements:
|
99
113
|
- - "~>"
|
100
114
|
- !ruby/object:Gem::Version
|
101
|
-
version:
|
115
|
+
version: '5.2'
|
102
116
|
type: :development
|
103
117
|
prerelease: false
|
104
118
|
version_requirements: !ruby/object:Gem::Requirement
|
105
119
|
requirements:
|
106
120
|
- - "~>"
|
107
121
|
- !ruby/object:Gem::Version
|
108
|
-
version:
|
122
|
+
version: '5.2'
|
123
|
+
- !ruby/object:Gem::Dependency
|
124
|
+
name: rake
|
125
|
+
requirement: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - ">="
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '13.0'
|
130
|
+
type: :development
|
131
|
+
prerelease: false
|
132
|
+
version_requirements: !ruby/object:Gem::Requirement
|
133
|
+
requirements:
|
134
|
+
- - ">="
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: '13.0'
|
137
|
+
- !ruby/object:Gem::Dependency
|
138
|
+
name: redcarpet
|
139
|
+
requirement: !ruby/object:Gem::Requirement
|
140
|
+
requirements:
|
141
|
+
- - "~>"
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: '3.0'
|
144
|
+
type: :development
|
145
|
+
prerelease: false
|
146
|
+
version_requirements: !ruby/object:Gem::Requirement
|
147
|
+
requirements:
|
148
|
+
- - "~>"
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: '3.0'
|
109
151
|
- !ruby/object:Gem::Dependency
|
110
152
|
name: simplecov
|
111
153
|
requirement: !ruby/object:Gem::Requirement
|
@@ -134,8 +176,8 @@ dependencies:
|
|
134
176
|
- - "~>"
|
135
177
|
- !ruby/object:Gem::Version
|
136
178
|
version: '0.9'
|
137
|
-
description:
|
138
|
-
|
179
|
+
description: Provides natural language understanding technologies, such as sentiment
|
180
|
+
analysis, entity recognition, entity sentiment analysis, and other text annotations.
|
139
181
|
email: googleapis-packages@google.com
|
140
182
|
executables: []
|
141
183
|
extensions: []
|
@@ -143,25 +185,13 @@ extra_rdoc_files: []
|
|
143
185
|
files:
|
144
186
|
- ".yardopts"
|
145
187
|
- AUTHENTICATION.md
|
146
|
-
- LICENSE
|
188
|
+
- LICENSE.md
|
189
|
+
- MIGRATING.md
|
147
190
|
- README.md
|
191
|
+
- lib/google-cloud-language.rb
|
148
192
|
- lib/google/cloud/language.rb
|
149
|
-
- lib/google/cloud/language/v1.rb
|
150
|
-
- lib/google/cloud/language/v1/credentials.rb
|
151
|
-
- lib/google/cloud/language/v1/doc/google/cloud/language/v1/language_service.rb
|
152
|
-
- lib/google/cloud/language/v1/language_service_client.rb
|
153
|
-
- lib/google/cloud/language/v1/language_service_client_config.json
|
154
|
-
- lib/google/cloud/language/v1/language_service_pb.rb
|
155
|
-
- lib/google/cloud/language/v1/language_service_services_pb.rb
|
156
|
-
- lib/google/cloud/language/v1beta2.rb
|
157
|
-
- lib/google/cloud/language/v1beta2/credentials.rb
|
158
|
-
- lib/google/cloud/language/v1beta2/doc/google/cloud/language/v1beta2/language_service.rb
|
159
|
-
- lib/google/cloud/language/v1beta2/language_service_client.rb
|
160
|
-
- lib/google/cloud/language/v1beta2/language_service_client_config.json
|
161
|
-
- lib/google/cloud/language/v1beta2/language_service_pb.rb
|
162
|
-
- lib/google/cloud/language/v1beta2/language_service_services_pb.rb
|
163
193
|
- lib/google/cloud/language/version.rb
|
164
|
-
homepage: https://github.com/googleapis/google-cloud-ruby
|
194
|
+
homepage: https://github.com/googleapis/google-cloud-ruby
|
165
195
|
licenses:
|
166
196
|
- Apache-2.0
|
167
197
|
metadata: {}
|
@@ -173,15 +203,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
173
203
|
requirements:
|
174
204
|
- - ">="
|
175
205
|
- !ruby/object:Gem::Version
|
176
|
-
version: '2.
|
206
|
+
version: '2.6'
|
177
207
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
178
208
|
requirements:
|
179
209
|
- - ">="
|
180
210
|
- !ruby/object:Gem::Version
|
181
211
|
version: '0'
|
182
212
|
requirements: []
|
183
|
-
rubygems_version: 3.
|
213
|
+
rubygems_version: 3.3.14
|
184
214
|
signing_key:
|
185
215
|
specification_version: 4
|
186
|
-
summary: API Client library for Cloud Natural Language API
|
216
|
+
summary: API Client library for the Cloud Natural Language API
|
187
217
|
test_files: []
|