google-cloud-speech 0.40.2 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +2 -1
- data/AUTHENTICATION.md +51 -59
- data/LICENSE.md +203 -0
- data/MIGRATING.md +367 -0
- data/README.md +35 -49
- data/lib/google-cloud-speech.rb +19 -0
- data/lib/google/cloud/speech.rb +87 -142
- data/lib/google/cloud/speech/version.rb +1 -1
- metadata +77 -69
- data/LICENSE +0 -201
- data/lib/google/cloud/speech/v1.rb +0 -166
- data/lib/google/cloud/speech/v1/cloud_speech_pb.rb +0 -192
- data/lib/google/cloud/speech/v1/cloud_speech_services_pb.rb +0 -58
- data/lib/google/cloud/speech/v1/credentials.rb +0 -41
- data/lib/google/cloud/speech/v1/doc/google/cloud/speech/v1/cloud_speech.rb +0 -698
- data/lib/google/cloud/speech/v1/doc/google/longrunning/operations.rb +0 -51
- data/lib/google/cloud/speech/v1/doc/google/protobuf/any.rb +0 -131
- data/lib/google/cloud/speech/v1/doc/google/protobuf/duration.rb +0 -91
- data/lib/google/cloud/speech/v1/doc/google/rpc/status.rb +0 -39
- data/lib/google/cloud/speech/v1/helpers.rb +0 -136
- data/lib/google/cloud/speech/v1/speech_client.rb +0 -343
- data/lib/google/cloud/speech/v1/speech_client_config.json +0 -41
- data/lib/google/cloud/speech/v1/stream.rb +0 -615
- data/lib/google/cloud/speech/v1p1beta1.rb +0 -166
- data/lib/google/cloud/speech/v1p1beta1/cloud_speech_pb.rb +0 -200
- data/lib/google/cloud/speech/v1p1beta1/cloud_speech_services_pb.rb +0 -58
- data/lib/google/cloud/speech/v1p1beta1/credentials.rb +0 -41
- data/lib/google/cloud/speech/v1p1beta1/doc/google/cloud/speech/v1p1beta1/cloud_speech.rb +0 -758
- data/lib/google/cloud/speech/v1p1beta1/doc/google/longrunning/operations.rb +0 -51
- data/lib/google/cloud/speech/v1p1beta1/doc/google/protobuf/any.rb +0 -131
- data/lib/google/cloud/speech/v1p1beta1/doc/google/protobuf/duration.rb +0 -91
- data/lib/google/cloud/speech/v1p1beta1/doc/google/rpc/status.rb +0 -39
- data/lib/google/cloud/speech/v1p1beta1/helpers.rb +0 -136
- data/lib/google/cloud/speech/v1p1beta1/speech_client.rb +0 -343
- data/lib/google/cloud/speech/v1p1beta1/speech_client_config.json +0 -41
- data/lib/google/cloud/speech/v1p1beta1/stream.rb +0 -615
data/README.md
CHANGED
@@ -1,67 +1,53 @@
|
|
1
|
-
# Ruby Client for Cloud Speech-to-Text API
|
1
|
+
# Ruby Client for the Cloud Speech-to-Text API
|
2
2
|
|
3
|
-
|
4
|
-
Converts audio to text by applying powerful neural network models.
|
5
|
-
- [Client Library Documentation][]
|
6
|
-
- [Product Documentation][]
|
3
|
+
API Client library for the Cloud Speech-to-Text API
|
7
4
|
|
8
|
-
|
9
|
-
In order to use this library, you first need to go through the following
|
10
|
-
steps:
|
5
|
+
Google Speech-to-Text enables developers to convert audio to text by applying powerful neural network models in an easy-to-use API. The API recognizes more than 120 languages and variants to support your global user base. You can enable voice command-and-control, transcribe audio from call centers, and more. It can process real-time streaming or prerecorded audio, using Google's machine learning technology.
|
11
6
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
7
|
+
Actual client classes for the various versions of this API are defined in
|
8
|
+
_versioned_ client gems, with names of the form `google-cloud-speech-v*`.
|
9
|
+
The gem `google-cloud-speech` is a convenience wrapper library that brings the
|
10
|
+
verisoned gems in as dependencies, and provides high-level methods for
|
11
|
+
constructing clients.
|
12
|
+
|
13
|
+
View the [Client Library Documentation](https://googleapis.dev/ruby/google-cloud-speech/latest)
|
14
|
+
for this library, google-cloud-speech, to see the convenience methods for
|
15
|
+
constructing client objects. Reference documentation for the client objects
|
16
|
+
themselves can be found in the client library documentation for the versioned
|
17
|
+
client gems:
|
18
|
+
[google-cloud-speech-v1](https://googleapis.dev/ruby/google-cloud-speech-v1/latest),
|
19
|
+
[google-cloud-speech-v1p1beta1](https://googleapis.dev/ruby/google-cloud-speech-v1p1beta1/latest).
|
20
|
+
|
21
|
+
See also the [Product Documentation](https://cloud.google.com/speech-to-text)
|
22
|
+
for more usage information.
|
23
|
+
|
24
|
+
## Quick Start
|
16
25
|
|
17
|
-
### Installation
|
18
26
|
```
|
19
27
|
$ gem install google-cloud-speech
|
20
28
|
```
|
21
29
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
[
|
27
|
-
|
28
|
-
|
29
|
-
### Preview
|
30
|
-
#### SpeechClient
|
31
|
-
```rb
|
32
|
-
require "google/cloud/speech"
|
33
|
-
|
34
|
-
speech_client = Google::Cloud::Speech.new
|
35
|
-
language_code = "en-US"
|
36
|
-
sample_rate_hertz = 44100
|
37
|
-
encoding = :FLAC
|
38
|
-
config = {
|
39
|
-
language_code: language_code,
|
40
|
-
sample_rate_hertz: sample_rate_hertz,
|
41
|
-
encoding: encoding
|
42
|
-
}
|
43
|
-
uri = "gs://cloud-samples-data/speech/brooklyn_bridge.flac"
|
44
|
-
audio = { uri: uri }
|
45
|
-
response = speech_client.recognize(config, audio)
|
46
|
-
```
|
30
|
+
In order to use this library, you first need to go through the following steps:
|
31
|
+
|
32
|
+
1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
33
|
+
1. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
34
|
+
1. [Enable the API.](https://console.cloud.google.com/apis/library/speech.googleapis.com)
|
35
|
+
1. {file:AUTHENTICATION.md Set up authentication.}
|
47
36
|
|
48
|
-
|
49
|
-
- Read the [Client Library Documentation][] for Cloud Speech-to-Text API
|
50
|
-
to see other available methods on the client.
|
51
|
-
- Read the [Cloud Speech-to-Text API Product documentation][Product Documentation]
|
52
|
-
to learn more about the product and see How-to Guides.
|
53
|
-
- View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
|
54
|
-
to see the full list of Cloud APIs that we cover.
|
37
|
+
## Migrating from 0.x versions
|
55
38
|
|
56
|
-
|
57
|
-
[
|
39
|
+
The 1.0 release of the google-cloud-speech client is a significant upgrade
|
40
|
+
based on a [next-gen code generator](https://github.com/googleapis/gapic-generator-ruby),
|
41
|
+
and includes substantial interface changes. Existing code written for earlier
|
42
|
+
versions of this library will likely require updates to use this version.
|
43
|
+
See the {file:MIGRATING.md MIGRATING.md} document for more information.
|
58
44
|
|
59
45
|
## Enabling Logging
|
60
46
|
|
61
47
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
62
|
-
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib
|
48
|
+
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
|
63
49
|
or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
64
|
-
that will write logs to [
|
50
|
+
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
65
51
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
66
52
|
|
67
53
|
Configuring a Ruby stdlib logger:
|
@@ -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/speech" unless defined? Google::Cloud::Speech::VERSION
|
data/lib/google/cloud/speech.rb
CHANGED
@@ -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,159 +14,102 @@
|
|
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/speech/version"
|
15
24
|
|
16
|
-
require "
|
17
|
-
|
25
|
+
require "googleauth"
|
26
|
+
gem "google-cloud-core"
|
27
|
+
require "google/cloud" unless defined? ::Google::Cloud.new
|
28
|
+
require "google/cloud/config"
|
29
|
+
|
30
|
+
# Set the default configuration
|
31
|
+
::Google::Cloud.configure.add_config! :speech do |config|
|
32
|
+
config.add_field! :endpoint, "speech.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 Speech-to-Text API ([Alpha](https://github.com/googleapis/google-cloud-ruby#versioning))
|
25
|
-
#
|
26
|
-
# [Cloud Speech-to-Text API][Product Documentation]:
|
27
|
-
# Converts audio to text by applying powerful neural network models.
|
28
|
-
# - [Product Documentation][]
|
29
|
-
#
|
30
|
-
# ## Quick Start
|
31
|
-
# In order to use this library, you first need to go through the following
|
32
|
-
# steps:
|
33
|
-
#
|
34
|
-
# 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
35
|
-
# 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
36
|
-
# 3. [Enable the Cloud Speech-to-Text API.](https://console.cloud.google.com/apis/library/speech.googleapis.com)
|
37
|
-
# 4. [Setup Authentication.](https://googleapis.dev/ruby/google-cloud-speech/latest/file.AUTHENTICATION.html)
|
38
|
-
#
|
39
|
-
# ### Installation
|
40
|
-
# ```
|
41
|
-
# $ gem install google-cloud-speech
|
42
|
-
# ```
|
43
|
-
#
|
44
|
-
# ### Migration Guide
|
45
|
-
#
|
46
|
-
# The 0.30.0 release introduced breaking changes relative to the previous
|
47
|
-
# release, 0.29.0. For more details and instructions to migrate your code,
|
48
|
-
# please visit the [migration
|
49
|
-
# guide](https://cloud.google.com/speech-to-text/docs/ruby-client-migration).
|
50
|
-
#
|
51
|
-
# ### Preview
|
52
|
-
# #### SpeechClient
|
53
|
-
# ```rb
|
54
|
-
# require "google/cloud/speech"
|
55
|
-
#
|
56
|
-
# speech_client = Google::Cloud::Speech.new
|
57
|
-
# language_code = "en-US"
|
58
|
-
# sample_rate_hertz = 44100
|
59
|
-
# encoding = :FLAC
|
60
|
-
# config = {
|
61
|
-
# language_code: language_code,
|
62
|
-
# sample_rate_hertz: sample_rate_hertz,
|
63
|
-
# encoding: encoding
|
64
|
-
# }
|
65
|
-
# uri = "gs://cloud-samples-data/speech/brooklyn_bridge.flac"
|
66
|
-
# audio = { uri: uri }
|
67
|
-
# response = speech_client.recognize(config, audio)
|
68
|
-
# ```
|
69
|
-
#
|
70
|
-
# ### Next Steps
|
71
|
-
# - Read the [Cloud Speech-to-Text API Product documentation][Product Documentation]
|
72
|
-
# to learn more about the product and see How-to Guides.
|
73
|
-
# - View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
|
74
|
-
# to see the full list of Cloud APIs that we cover.
|
75
|
-
#
|
76
|
-
# [Product Documentation]: https://cloud.google.com/speech
|
77
|
-
#
|
78
|
-
# ## Enabling Logging
|
79
|
-
#
|
80
|
-
# To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
81
|
-
# 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,
|
82
|
-
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
83
|
-
# 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)
|
84
|
-
# and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
85
|
-
#
|
86
|
-
# Configuring a Ruby stdlib logger:
|
87
|
-
#
|
88
|
-
# ```ruby
|
89
|
-
# require "logger"
|
90
|
-
#
|
91
|
-
# module MyLogger
|
92
|
-
# LOGGER = Logger.new $stderr, level: Logger::WARN
|
93
|
-
# def logger
|
94
|
-
# LOGGER
|
95
|
-
# end
|
96
|
-
# end
|
97
|
-
#
|
98
|
-
# # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
|
99
|
-
# module GRPC
|
100
|
-
# extend MyLogger
|
101
|
-
# end
|
102
|
-
# ```
|
103
|
-
#
|
104
46
|
module Speech
|
105
|
-
|
106
|
-
|
107
|
-
|
47
|
+
##
|
48
|
+
# Create a new client object for Speech.
|
49
|
+
#
|
50
|
+
# By default, this returns an instance of
|
51
|
+
# [Google::Cloud::Speech::V1::Speech::Client](https://googleapis.dev/ruby/google-cloud-speech-v1/latest/Google/Cloud/Speech/V1/Speech/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 Speech 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 Speech
|
59
|
+
#
|
60
|
+
# Service that implements Google Cloud Speech API.
|
61
|
+
#
|
62
|
+
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
63
|
+
# Defaults to `:v1`.
|
64
|
+
# @return [Speech::Client] A client object for the specified version.
|
65
|
+
#
|
66
|
+
def self.speech version: :v1, &block
|
67
|
+
require "google/cloud/speech/#{version.to_s.downcase}"
|
108
68
|
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
69
|
+
package_name = Google::Cloud::Speech
|
70
|
+
.constants
|
71
|
+
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
|
72
|
+
.first
|
73
|
+
package_module = Google::Cloud::Speech.const_get package_name
|
74
|
+
package_module.const_get(:Speech).const_get(:Client).new(&block)
|
75
|
+
end
|
114
76
|
|
115
77
|
##
|
116
|
-
#
|
78
|
+
# Configure the google-cloud-speech library.
|
117
79
|
#
|
118
|
-
#
|
119
|
-
#
|
120
|
-
#
|
121
|
-
#
|
122
|
-
#
|
123
|
-
#
|
124
|
-
#
|
125
|
-
#
|
126
|
-
#
|
127
|
-
#
|
128
|
-
#
|
129
|
-
#
|
130
|
-
#
|
131
|
-
#
|
132
|
-
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
#
|
139
|
-
#
|
140
|
-
#
|
141
|
-
#
|
142
|
-
#
|
143
|
-
|
144
|
-
|
145
|
-
# The default timeout, in seconds, for calls made through this client.
|
146
|
-
# @param metadata [Hash]
|
147
|
-
# Default metadata to be sent with each request. This can be overridden on a per call basis.
|
148
|
-
# @param service_address [String]
|
149
|
-
# Override for the service hostname, or `nil` to leave as the default.
|
150
|
-
# @param service_port [Integer]
|
151
|
-
# Override for the service port, or `nil` to leave as the default.
|
152
|
-
# @param exception_transformer [Proc]
|
153
|
-
# An optional proc that intercepts any exceptions raised during an API call to inject
|
154
|
-
# custom error handling.
|
155
|
-
def self.new(*args, version: :v1, **kwargs)
|
156
|
-
unless AVAILABLE_VERSIONS.include?(version.to_s.downcase)
|
157
|
-
raise "The version: #{version} is not available. The available versions " \
|
158
|
-
"are: [#{AVAILABLE_VERSIONS.join(", ")}]"
|
159
|
-
end
|
80
|
+
# The following configuration parameters are supported:
|
81
|
+
#
|
82
|
+
# * `credentials` (*type:* `String, Hash, Google::Auth::Credentials`) -
|
83
|
+
# The path to the keyfile as a String, the contents of the keyfile as a
|
84
|
+
# Hash, or a Google::Auth::Credentials object.
|
85
|
+
# * `lib_name` (*type:* `String`) -
|
86
|
+
# The library name as recorded in instrumentation and logging.
|
87
|
+
# * `lib_version` (*type:* `String`) -
|
88
|
+
# The library version as recorded in instrumentation and logging.
|
89
|
+
# * `interceptors` (*type:* `Array<GRPC::ClientInterceptor>`) -
|
90
|
+
# An array of interceptors that are run before calls are executed.
|
91
|
+
# * `timeout` (*type:* `Numeric`) -
|
92
|
+
# Default timeout in seconds.
|
93
|
+
# * `metadata` (*type:* `Hash{Symbol=>String}`) -
|
94
|
+
# Additional gRPC headers to be sent with the call.
|
95
|
+
# * `retry_policy` (*type:* `Hash`) -
|
96
|
+
# The retry policy. The value is a hash with the following keys:
|
97
|
+
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
98
|
+
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
99
|
+
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
100
|
+
# * `:retry_codes` (*type:* `Array<String>`) -
|
101
|
+
# The error codes that should trigger a retry.
|
102
|
+
#
|
103
|
+
# @return [::Google::Cloud::Config] The default configuration used by this library
|
104
|
+
#
|
105
|
+
def self.configure
|
106
|
+
yield ::Google::Cloud.configure.speech if block_given?
|
160
107
|
|
161
|
-
|
162
|
-
version_module = Google::Cloud::Speech
|
163
|
-
.constants
|
164
|
-
.select {|sym| sym.to_s.downcase == version.to_s.downcase}
|
165
|
-
.first
|
166
|
-
Google::Cloud::Speech.const_get(version_module).new(*args, **kwargs)
|
108
|
+
::Google::Cloud.configure.speech
|
167
109
|
end
|
168
110
|
end
|
169
111
|
end
|
170
112
|
end
|
113
|
+
|
114
|
+
helper_path = ::File.join __dir__, "speech", "helpers.rb"
|
115
|
+
require "google/cloud/speech/helpers" if ::File.file? helper_path
|
metadata
CHANGED
@@ -1,111 +1,141 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-speech
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.1.2
|
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: 2021-01-20 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.5'
|
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.5'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: google-cloud-speech-v1
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 1.3.9
|
34
|
-
- - "<"
|
31
|
+
- - "~>"
|
35
32
|
- !ruby/object:Gem::Version
|
36
|
-
version: '
|
33
|
+
version: '0.0'
|
37
34
|
type: :runtime
|
38
35
|
prerelease: false
|
39
36
|
version_requirements: !ruby/object:Gem::Requirement
|
40
37
|
requirements:
|
41
|
-
- - "
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: 1.3.9
|
44
|
-
- - "<"
|
38
|
+
- - "~>"
|
45
39
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
40
|
+
version: '0.0'
|
47
41
|
- !ruby/object:Gem::Dependency
|
48
|
-
name:
|
42
|
+
name: google-cloud-speech-v1p1beta1
|
49
43
|
requirement: !ruby/object:Gem::Requirement
|
50
44
|
requirements:
|
51
|
-
- - "
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: 1.0.4
|
54
|
-
- - "<"
|
45
|
+
- - "~>"
|
55
46
|
- !ruby/object:Gem::Version
|
56
|
-
version: '
|
47
|
+
version: '0.0'
|
57
48
|
type: :runtime
|
58
49
|
prerelease: false
|
59
50
|
version_requirements: !ruby/object:Gem::Requirement
|
60
51
|
requirements:
|
61
|
-
- - "
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: google-style
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
62
60
|
- !ruby/object:Gem::Version
|
63
|
-
version: 1.0
|
64
|
-
|
61
|
+
version: 1.24.0
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
65
67
|
- !ruby/object:Gem::Version
|
66
|
-
version:
|
68
|
+
version: 1.24.0
|
67
69
|
- !ruby/object:Gem::Dependency
|
68
70
|
name: minitest
|
69
71
|
requirement: !ruby/object:Gem::Requirement
|
70
72
|
requirements:
|
71
73
|
- - "~>"
|
72
74
|
- !ruby/object:Gem::Version
|
73
|
-
version: '5.
|
75
|
+
version: '5.14'
|
74
76
|
type: :development
|
75
77
|
prerelease: false
|
76
78
|
version_requirements: !ruby/object:Gem::Requirement
|
77
79
|
requirements:
|
78
80
|
- - "~>"
|
79
81
|
- !ruby/object:Gem::Version
|
80
|
-
version: '5.
|
82
|
+
version: '5.14'
|
81
83
|
- !ruby/object:Gem::Dependency
|
82
|
-
name:
|
84
|
+
name: minitest-focus
|
83
85
|
requirement: !ruby/object:Gem::Requirement
|
84
86
|
requirements:
|
85
87
|
- - "~>"
|
86
88
|
- !ruby/object:Gem::Version
|
87
|
-
version: '
|
89
|
+
version: '1.1'
|
88
90
|
type: :development
|
89
91
|
prerelease: false
|
90
92
|
version_requirements: !ruby/object:Gem::Requirement
|
91
93
|
requirements:
|
92
94
|
- - "~>"
|
93
95
|
- !ruby/object:Gem::Version
|
94
|
-
version: '
|
96
|
+
version: '1.1'
|
95
97
|
- !ruby/object:Gem::Dependency
|
96
|
-
name:
|
98
|
+
name: minitest-rg
|
97
99
|
requirement: !ruby/object:Gem::Requirement
|
98
100
|
requirements:
|
99
101
|
- - "~>"
|
100
102
|
- !ruby/object:Gem::Version
|
101
|
-
version:
|
103
|
+
version: '5.2'
|
102
104
|
type: :development
|
103
105
|
prerelease: false
|
104
106
|
version_requirements: !ruby/object:Gem::Requirement
|
105
107
|
requirements:
|
106
108
|
- - "~>"
|
107
109
|
- !ruby/object:Gem::Version
|
108
|
-
version:
|
110
|
+
version: '5.2'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rake
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '12.0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '12.0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: redcarpet
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '3.0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '3.0'
|
109
139
|
- !ruby/object:Gem::Dependency
|
110
140
|
name: simplecov
|
111
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -134,8 +164,12 @@ dependencies:
|
|
134
164
|
- - "~>"
|
135
165
|
- !ruby/object:Gem::Version
|
136
166
|
version: '0.9'
|
137
|
-
description:
|
138
|
-
API.
|
167
|
+
description: Google Speech-to-Text enables developers to convert audio to text by
|
168
|
+
applying powerful neural network models in an easy-to-use API. The API recognizes
|
169
|
+
more than 120 languages and variants to support your global user base. You can enable
|
170
|
+
voice command-and-control, transcribe audio from call centers, and more. It can
|
171
|
+
process real-time streaming or prerecorded audio, using Google's machine learning
|
172
|
+
technology.
|
139
173
|
email: googleapis-packages@google.com
|
140
174
|
executables: []
|
141
175
|
extensions: []
|
@@ -143,43 +177,17 @@ extra_rdoc_files: []
|
|
143
177
|
files:
|
144
178
|
- ".yardopts"
|
145
179
|
- AUTHENTICATION.md
|
146
|
-
- LICENSE
|
180
|
+
- LICENSE.md
|
181
|
+
- MIGRATING.md
|
147
182
|
- README.md
|
183
|
+
- lib/google-cloud-speech.rb
|
148
184
|
- lib/google/cloud/speech.rb
|
149
|
-
- lib/google/cloud/speech/v1.rb
|
150
|
-
- lib/google/cloud/speech/v1/cloud_speech_pb.rb
|
151
|
-
- lib/google/cloud/speech/v1/cloud_speech_services_pb.rb
|
152
|
-
- lib/google/cloud/speech/v1/credentials.rb
|
153
|
-
- lib/google/cloud/speech/v1/doc/google/cloud/speech/v1/cloud_speech.rb
|
154
|
-
- lib/google/cloud/speech/v1/doc/google/longrunning/operations.rb
|
155
|
-
- lib/google/cloud/speech/v1/doc/google/protobuf/any.rb
|
156
|
-
- lib/google/cloud/speech/v1/doc/google/protobuf/duration.rb
|
157
|
-
- lib/google/cloud/speech/v1/doc/google/rpc/status.rb
|
158
|
-
- lib/google/cloud/speech/v1/helpers.rb
|
159
|
-
- lib/google/cloud/speech/v1/speech_client.rb
|
160
|
-
- lib/google/cloud/speech/v1/speech_client_config.json
|
161
|
-
- lib/google/cloud/speech/v1/stream.rb
|
162
|
-
- lib/google/cloud/speech/v1p1beta1.rb
|
163
|
-
- lib/google/cloud/speech/v1p1beta1/cloud_speech_pb.rb
|
164
|
-
- lib/google/cloud/speech/v1p1beta1/cloud_speech_services_pb.rb
|
165
|
-
- lib/google/cloud/speech/v1p1beta1/credentials.rb
|
166
|
-
- lib/google/cloud/speech/v1p1beta1/doc/google/cloud/speech/v1p1beta1/cloud_speech.rb
|
167
|
-
- lib/google/cloud/speech/v1p1beta1/doc/google/longrunning/operations.rb
|
168
|
-
- lib/google/cloud/speech/v1p1beta1/doc/google/protobuf/any.rb
|
169
|
-
- lib/google/cloud/speech/v1p1beta1/doc/google/protobuf/duration.rb
|
170
|
-
- lib/google/cloud/speech/v1p1beta1/doc/google/rpc/status.rb
|
171
|
-
- lib/google/cloud/speech/v1p1beta1/helpers.rb
|
172
|
-
- lib/google/cloud/speech/v1p1beta1/speech_client.rb
|
173
|
-
- lib/google/cloud/speech/v1p1beta1/speech_client_config.json
|
174
|
-
- lib/google/cloud/speech/v1p1beta1/stream.rb
|
175
185
|
- lib/google/cloud/speech/version.rb
|
176
|
-
homepage: https://github.com/googleapis/
|
186
|
+
homepage: https://github.com/googleapis/google-cloud-ruby
|
177
187
|
licenses:
|
178
188
|
- Apache-2.0
|
179
189
|
metadata: {}
|
180
|
-
post_install_message:
|
181
|
-
the previous release, 0.29.0. For more details and instructions to migrate your
|
182
|
-
code, please visit the migration guide: https://cloud.google.com/speech-to-text/docs/ruby-client-migration.'
|
190
|
+
post_install_message:
|
183
191
|
rdoc_options: []
|
184
192
|
require_paths:
|
185
193
|
- lib
|
@@ -194,8 +202,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
194
202
|
- !ruby/object:Gem::Version
|
195
203
|
version: '0'
|
196
204
|
requirements: []
|
197
|
-
rubygems_version: 3.
|
205
|
+
rubygems_version: 3.2.6
|
198
206
|
signing_key:
|
199
207
|
specification_version: 4
|
200
|
-
summary: API Client library for Cloud Speech-to-Text API
|
208
|
+
summary: API Client library for the Cloud Speech-to-Text API
|
201
209
|
test_files: []
|