google-cloud-text_to_speech 0.7.0 → 1.0.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 +2 -1
- data/AUTHENTICATION.md +51 -54
- data/LICENSE.md +203 -0
- data/MIGRATING.md +230 -0
- data/README.md +36 -25
- data/lib/google-cloud-text_to_speech.rb +19 -0
- data/lib/google/cloud/text_to_speech.rb +81 -117
- data/lib/google/cloud/text_to_speech/version.rb +6 -2
- metadata +98 -52
- data/LICENSE +0 -201
- data/lib/google/cloud/text_to_speech/v1.rb +0 -146
- data/lib/google/cloud/text_to_speech/v1/credentials.rb +0 -41
- data/lib/google/cloud/text_to_speech/v1/doc/google/cloud/texttospeech/v1/cloud_tts.rb +0 -206
- data/lib/google/cloud/text_to_speech/v1/text_to_speech_client.rb +0 -279
- data/lib/google/cloud/text_to_speech/v1/text_to_speech_client_config.json +0 -36
- data/lib/google/cloud/text_to_speech/v1beta1.rb +0 -146
- data/lib/google/cloud/text_to_speech/v1beta1/credentials.rb +0 -41
- data/lib/google/cloud/text_to_speech/v1beta1/doc/google/cloud/texttospeech/v1beta1/cloud_tts.rb +0 -206
- data/lib/google/cloud/text_to_speech/v1beta1/text_to_speech_client.rb +0 -279
- data/lib/google/cloud/text_to_speech/v1beta1/text_to_speech_client_config.json +0 -36
- data/lib/google/cloud/texttospeech/v1/cloud_tts_pb.rb +0 -82
- data/lib/google/cloud/texttospeech/v1/cloud_tts_services_pb.rb +0 -51
- data/lib/google/cloud/texttospeech/v1beta1/cloud_tts_pb.rb +0 -82
- data/lib/google/cloud/texttospeech/v1beta1/cloud_tts_services_pb.rb +0 -51
data/README.md
CHANGED
@@ -1,42 +1,53 @@
|
|
1
|
-
# Ruby Client for Cloud Text-to-Speech API
|
1
|
+
# Ruby Client for the Cloud Text-to-Speech API
|
2
2
|
|
3
|
-
|
4
|
-
Synthesizes natural-sounding speech by applying powerful neural network
|
5
|
-
models.
|
6
|
-
- [Client Library Documentation][]
|
7
|
-
- [Product Documentation][]
|
3
|
+
API Client library for the Cloud Text-to-Speech API
|
8
4
|
|
9
|
-
|
10
|
-
In order to use this library, you first need to go through the following
|
11
|
-
steps:
|
5
|
+
Text-to-Speech converts text or Speech Synthesis Markup Language (SSML) input into audio data of natural human speech.
|
12
6
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
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-text_to_speech-v*`.
|
9
|
+
The gem `google-cloud-text_to_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-text_to_speech/latest)
|
14
|
+
for this library, google-cloud-text_to_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-text_to_speech-v1](https://googleapis.dev/ruby/google-cloud-text_to_speech-v1/latest),
|
19
|
+
[google-cloud-text_to_speech-v1beta1](https://googleapis.dev/ruby/google-cloud-text_to_speech-v1beta1/latest).
|
20
|
+
|
21
|
+
See also the [Product Documentation](https://cloud.google.com/text-to-speech)
|
22
|
+
for more usage information.
|
23
|
+
|
24
|
+
## Quick Start
|
17
25
|
|
18
|
-
### Installation
|
19
26
|
```
|
20
27
|
$ gem install google-cloud-text_to_speech
|
21
28
|
```
|
22
29
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
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/texttospeech.googleapis.com)
|
35
|
+
1. {file:AUTHENTICATION.md Set up authentication.}
|
36
|
+
|
37
|
+
## Migrating from 0.x versions
|
30
38
|
|
31
|
-
|
32
|
-
[
|
39
|
+
The 1.0 release of the google-cloud-text_to_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.
|
33
44
|
|
34
45
|
## Enabling Logging
|
35
46
|
|
36
47
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
37
|
-
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,
|
38
49
|
or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
39
|
-
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)
|
40
51
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
41
52
|
|
42
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/text_to_speech" unless defined? Google::Cloud::TextToSpeech::VERSION
|
@@ -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,133 +14,95 @@
|
|
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/text_to_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! :text_to_speech do |config|
|
32
|
+
config.add_field! :credentials, nil, match: [::String, ::Hash, ::Google::Auth::Credentials]
|
33
|
+
config.add_field! :lib_name, nil, match: ::String
|
34
|
+
config.add_field! :lib_version, nil, match: ::String
|
35
|
+
config.add_field! :interceptors, nil, match: ::Array
|
36
|
+
config.add_field! :timeout, nil, match: ::Numeric
|
37
|
+
config.add_field! :metadata, nil, match: ::Hash
|
38
|
+
config.add_field! :retry_policy, nil, match: [::Hash, ::Proc]
|
39
|
+
end
|
18
40
|
|
19
41
|
module Google
|
20
42
|
module Cloud
|
21
|
-
# rubocop:disable LineLength
|
22
|
-
|
23
|
-
##
|
24
|
-
# # Ruby Client for Cloud Text-to-Speech API
|
25
|
-
#
|
26
|
-
# [Cloud Text-to-Speech API][Product Documentation]:
|
27
|
-
# Synthesizes natural-sounding speech by applying powerful neural network
|
28
|
-
# models.
|
29
|
-
# - [Product Documentation][]
|
30
|
-
#
|
31
|
-
# ## Quick Start
|
32
|
-
# In order to use this library, you first need to go through the following
|
33
|
-
# steps:
|
34
|
-
#
|
35
|
-
# 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
36
|
-
# 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
37
|
-
# 3. [Enable the Cloud Text-to-Speech API.](https://console.cloud.google.com/apis/library/texttospeech.googleapis.com)
|
38
|
-
# 4. [Setup Authentication.](https://googleapis.dev/ruby/google-cloud-text_to_speech/latest/file.AUTHENTICATION.html)
|
39
|
-
#
|
40
|
-
# ### Installation
|
41
|
-
# ```
|
42
|
-
# $ gem install google-cloud-text_to_speech
|
43
|
-
# ```
|
44
|
-
#
|
45
|
-
# ### Next Steps
|
46
|
-
# - Read the [Cloud Text-to-Speech API Product documentation][Product Documentation]
|
47
|
-
# to learn more about the product and see How-to Guides.
|
48
|
-
# - View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
|
49
|
-
# to see the full list of Cloud APIs that we cover.
|
50
|
-
#
|
51
|
-
# [Product Documentation]: https://cloud.google.com/texttospeech
|
52
|
-
#
|
53
|
-
# ## Enabling Logging
|
54
|
-
#
|
55
|
-
# To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
56
|
-
# 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,
|
57
|
-
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
58
|
-
# 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)
|
59
|
-
# and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
60
|
-
#
|
61
|
-
# Configuring a Ruby stdlib logger:
|
62
|
-
#
|
63
|
-
# ```ruby
|
64
|
-
# require "logger"
|
65
|
-
#
|
66
|
-
# module MyLogger
|
67
|
-
# LOGGER = Logger.new $stderr, level: Logger::WARN
|
68
|
-
# def logger
|
69
|
-
# LOGGER
|
70
|
-
# end
|
71
|
-
# end
|
72
|
-
#
|
73
|
-
# # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
|
74
|
-
# module GRPC
|
75
|
-
# extend MyLogger
|
76
|
-
# end
|
77
|
-
# ```
|
78
|
-
#
|
79
43
|
module TextToSpeech
|
80
|
-
|
81
|
-
|
82
|
-
|
44
|
+
##
|
45
|
+
# Create a new client object for TextToSpeech.
|
46
|
+
#
|
47
|
+
# By default, this returns an instance of
|
48
|
+
# [Google::Cloud::TextToSpeech::V1::TextToSpeech::Client](https://googleapis.dev/ruby/google-cloud-text_to_speech-v1/latest/Google/Cloud/TextToSpeech/V1/TextToSpeech/Client.html)
|
49
|
+
# for version V1 of the API.
|
50
|
+
# However, you can specify specify a different API version by passing it in the
|
51
|
+
# `version` parameter. If the TextToSpeech service is
|
52
|
+
# supported by that API version, and the corresponding gem is available, the
|
53
|
+
# appropriate versioned client will be returned.
|
54
|
+
#
|
55
|
+
# ## About TextToSpeech
|
56
|
+
#
|
57
|
+
# Service that implements Google Cloud Text-to-Speech API.
|
58
|
+
#
|
59
|
+
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
60
|
+
# Defaults to `:v1`.
|
61
|
+
# @return [TextToSpeech::Client] A client object for the specified version.
|
62
|
+
#
|
63
|
+
def self.text_to_speech version: :v1, &block
|
64
|
+
require "google/cloud/text_to_speech/#{version.to_s.downcase}"
|
83
65
|
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
66
|
+
package_name = Google::Cloud::TextToSpeech
|
67
|
+
.constants
|
68
|
+
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
|
69
|
+
.first
|
70
|
+
package_module = Google::Cloud::TextToSpeech.const_get package_name
|
71
|
+
package_module.const_get(:TextToSpeech).const_get(:Client).new(&block)
|
72
|
+
end
|
89
73
|
|
90
74
|
##
|
91
|
-
#
|
75
|
+
# Configure the google-cloud-text_to_speech library.
|
76
|
+
#
|
77
|
+
# The following configuration parameters are supported:
|
78
|
+
#
|
79
|
+
# * `credentials` (*type:* `String, Hash, Google::Auth::Credentials`) -
|
80
|
+
# The path to the keyfile as a String, the contents of the keyfile as a
|
81
|
+
# Hash, or a Google::Auth::Credentials object.
|
82
|
+
# * `lib_name` (*type:* `String`) -
|
83
|
+
# The library name as recorded in instrumentation and logging.
|
84
|
+
# * `lib_version` (*type:* `String`) -
|
85
|
+
# The library version as recorded in instrumentation and logging.
|
86
|
+
# * `interceptors` (*type:* `Array<GRPC::ClientInterceptor>`) -
|
87
|
+
# An array of interceptors that are run before calls are executed.
|
88
|
+
# * `timeout` (*type:* `Integer`) -
|
89
|
+
# Default timeout in milliseconds.
|
90
|
+
# * `metadata` (*type:* `Hash{Symbol=>String}`) -
|
91
|
+
# Additional gRPC headers to be sent with the call.
|
92
|
+
# * `retry_policy` (*type:* `Hash`) -
|
93
|
+
# The retry policy. The value is a hash with the following keys:
|
94
|
+
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
95
|
+
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
96
|
+
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
97
|
+
# * `:retry_codes` (*type:* `Array<String>`) -
|
98
|
+
# The error codes that should trigger a retry.
|
99
|
+
#
|
100
|
+
# @return [::Google::Cloud::Config] The default configuration used by this library
|
92
101
|
#
|
93
|
-
|
94
|
-
|
95
|
-
# is used.
|
96
|
-
# @overload new(version:, credentials:, scopes:, client_config:, timeout:)
|
97
|
-
# @param credentials [Google::Auth::Credentials, String, Hash, GRPC::Core::Channel, GRPC::Core::ChannelCredentials, Proc]
|
98
|
-
# Provides the means for authenticating requests made by the client. This parameter can
|
99
|
-
# be many types.
|
100
|
-
# A `Google::Auth::Credentials` uses a the properties of its represented keyfile for
|
101
|
-
# authenticating requests made by this client.
|
102
|
-
# A `String` will be treated as the path to the keyfile to be used for the construction of
|
103
|
-
# credentials for this client.
|
104
|
-
# A `Hash` will be treated as the contents of a keyfile to be used for the construction of
|
105
|
-
# credentials for this client.
|
106
|
-
# A `GRPC::Core::Channel` will be used to make calls through.
|
107
|
-
# A `GRPC::Core::ChannelCredentials` for the setting up the RPC client. The channel credentials
|
108
|
-
# should already be composed with a `GRPC::Core::CallCredentials` object.
|
109
|
-
# A `Proc` will be used as an updater_proc for the Grpc channel. The proc transforms the
|
110
|
-
# metadata for requests, generally, to give OAuth credentials.
|
111
|
-
# @param scopes [Array<String>]
|
112
|
-
# The OAuth scopes for this service. This parameter is ignored if
|
113
|
-
# an updater_proc is supplied.
|
114
|
-
# @param client_config [Hash]
|
115
|
-
# A Hash for call options for each method. See
|
116
|
-
# Google::Gax#construct_settings for the structure of
|
117
|
-
# this data. Falls back to the default config if not specified
|
118
|
-
# or the specified config is missing data points.
|
119
|
-
# @param timeout [Numeric]
|
120
|
-
# The default timeout, in seconds, for calls made through this client.
|
121
|
-
# @param metadata [Hash]
|
122
|
-
# Default metadata to be sent with each request. This can be overridden on a per call basis.
|
123
|
-
# @param service_address [String]
|
124
|
-
# Override for the service hostname, or `nil` to leave as the default.
|
125
|
-
# @param service_port [Integer]
|
126
|
-
# Override for the service port, or `nil` to leave as the default.
|
127
|
-
# @param exception_transformer [Proc]
|
128
|
-
# An optional proc that intercepts any exceptions raised during an API call to inject
|
129
|
-
# custom error handling.
|
130
|
-
def self.new(*args, version: :v1, **kwargs)
|
131
|
-
unless AVAILABLE_VERSIONS.include?(version.to_s.downcase)
|
132
|
-
raise "The version: #{version} is not available. The available versions " \
|
133
|
-
"are: [#{AVAILABLE_VERSIONS.join(", ")}]"
|
134
|
-
end
|
102
|
+
def self.configure
|
103
|
+
yield ::Google::Cloud.configure.text_to_speech if block_given?
|
135
104
|
|
136
|
-
|
137
|
-
version_module = Google::Cloud::TextToSpeech
|
138
|
-
.constants
|
139
|
-
.select {|sym| sym.to_s.downcase == version.to_s.downcase}
|
140
|
-
.first
|
141
|
-
Google::Cloud::TextToSpeech.const_get(version_module).new(*args, **kwargs)
|
105
|
+
::Google::Cloud.configure.text_to_speech
|
142
106
|
end
|
143
107
|
end
|
144
108
|
end
|
@@ -1,4 +1,6 @@
|
|
1
|
-
#
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2020 Google LLC
|
2
4
|
#
|
3
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
6
|
# you may not use this file except in compliance with the License.
|
@@ -12,11 +14,13 @@
|
|
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
|
+
|
15
19
|
|
16
20
|
module Google
|
17
21
|
module Cloud
|
18
22
|
module TextToSpeech
|
19
|
-
VERSION = "0.
|
23
|
+
VERSION = "1.0.0"
|
20
24
|
end
|
21
25
|
end
|
22
26
|
end
|
metadata
CHANGED
@@ -1,111 +1,169 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-text_to_speech
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.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: 2020-
|
11
|
+
date: 2020-05-06 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-text_to_speech-v1
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
34
|
-
|
33
|
+
version: '0.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
35
39
|
- !ruby/object:Gem::Version
|
36
|
-
version: '
|
40
|
+
version: '0.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: google-cloud-text_to_speech-v1beta1
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0.0'
|
37
48
|
type: :runtime
|
38
49
|
prerelease: false
|
39
50
|
version_requirements: !ruby/object:Gem::Requirement
|
40
51
|
requirements:
|
41
|
-
- - "
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: autotest-suffix
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
42
60
|
- !ruby/object:Gem::Version
|
43
|
-
version: 1.
|
44
|
-
|
61
|
+
version: '1.1'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
45
67
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
68
|
+
version: '1.1'
|
47
69
|
- !ruby/object:Gem::Dependency
|
48
|
-
name:
|
70
|
+
name: google-style
|
49
71
|
requirement: !ruby/object:Gem::Requirement
|
50
72
|
requirements:
|
51
|
-
- - "
|
73
|
+
- - "~>"
|
52
74
|
- !ruby/object:Gem::Version
|
53
|
-
version: 1.0
|
54
|
-
|
75
|
+
version: 1.24.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
55
81
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
57
|
-
|
82
|
+
version: 1.24.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: minitest
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '5.14'
|
90
|
+
type: :development
|
58
91
|
prerelease: false
|
59
92
|
version_requirements: !ruby/object:Gem::Requirement
|
60
93
|
requirements:
|
61
|
-
- - "
|
94
|
+
- - "~>"
|
62
95
|
- !ruby/object:Gem::Version
|
63
|
-
version:
|
64
|
-
|
96
|
+
version: '5.14'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: minitest-autotest
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
65
102
|
- !ruby/object:Gem::Version
|
66
|
-
version: '
|
103
|
+
version: '1.0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '1.0'
|
67
111
|
- !ruby/object:Gem::Dependency
|
68
|
-
name: minitest
|
112
|
+
name: minitest-focus
|
69
113
|
requirement: !ruby/object:Gem::Requirement
|
70
114
|
requirements:
|
71
115
|
- - "~>"
|
72
116
|
- !ruby/object:Gem::Version
|
73
|
-
version: '
|
117
|
+
version: '1.1'
|
74
118
|
type: :development
|
75
119
|
prerelease: false
|
76
120
|
version_requirements: !ruby/object:Gem::Requirement
|
77
121
|
requirements:
|
78
122
|
- - "~>"
|
79
123
|
- !ruby/object:Gem::Version
|
80
|
-
version: '
|
124
|
+
version: '1.1'
|
81
125
|
- !ruby/object:Gem::Dependency
|
82
|
-
name:
|
126
|
+
name: minitest-rg
|
83
127
|
requirement: !ruby/object:Gem::Requirement
|
84
128
|
requirements:
|
85
129
|
- - "~>"
|
86
130
|
- !ruby/object:Gem::Version
|
87
|
-
version: '
|
131
|
+
version: '5.2'
|
88
132
|
type: :development
|
89
133
|
prerelease: false
|
90
134
|
version_requirements: !ruby/object:Gem::Requirement
|
91
135
|
requirements:
|
92
136
|
- - "~>"
|
93
137
|
- !ruby/object:Gem::Version
|
94
|
-
version: '
|
138
|
+
version: '5.2'
|
95
139
|
- !ruby/object:Gem::Dependency
|
96
|
-
name:
|
140
|
+
name: rake
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '12.0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '12.0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: redcarpet
|
97
155
|
requirement: !ruby/object:Gem::Requirement
|
98
156
|
requirements:
|
99
157
|
- - "~>"
|
100
158
|
- !ruby/object:Gem::Version
|
101
|
-
version:
|
159
|
+
version: '3.0'
|
102
160
|
type: :development
|
103
161
|
prerelease: false
|
104
162
|
version_requirements: !ruby/object:Gem::Requirement
|
105
163
|
requirements:
|
106
164
|
- - "~>"
|
107
165
|
- !ruby/object:Gem::Version
|
108
|
-
version:
|
166
|
+
version: '3.0'
|
109
167
|
- !ruby/object:Gem::Dependency
|
110
168
|
name: simplecov
|
111
169
|
requirement: !ruby/object:Gem::Requirement
|
@@ -134,8 +192,8 @@ dependencies:
|
|
134
192
|
- - "~>"
|
135
193
|
- !ruby/object:Gem::Version
|
136
194
|
version: '0.9'
|
137
|
-
description:
|
138
|
-
|
195
|
+
description: Text-to-Speech converts text or Speech Synthesis Markup Language (SSML)
|
196
|
+
input into audio data of natural human speech.
|
139
197
|
email: googleapis-packages@google.com
|
140
198
|
executables: []
|
141
199
|
extensions: []
|
@@ -143,25 +201,13 @@ extra_rdoc_files: []
|
|
143
201
|
files:
|
144
202
|
- ".yardopts"
|
145
203
|
- AUTHENTICATION.md
|
146
|
-
- LICENSE
|
204
|
+
- LICENSE.md
|
205
|
+
- MIGRATING.md
|
147
206
|
- README.md
|
207
|
+
- lib/google-cloud-text_to_speech.rb
|
148
208
|
- lib/google/cloud/text_to_speech.rb
|
149
|
-
- lib/google/cloud/text_to_speech/v1.rb
|
150
|
-
- lib/google/cloud/text_to_speech/v1/credentials.rb
|
151
|
-
- lib/google/cloud/text_to_speech/v1/doc/google/cloud/texttospeech/v1/cloud_tts.rb
|
152
|
-
- lib/google/cloud/text_to_speech/v1/text_to_speech_client.rb
|
153
|
-
- lib/google/cloud/text_to_speech/v1/text_to_speech_client_config.json
|
154
|
-
- lib/google/cloud/text_to_speech/v1beta1.rb
|
155
|
-
- lib/google/cloud/text_to_speech/v1beta1/credentials.rb
|
156
|
-
- lib/google/cloud/text_to_speech/v1beta1/doc/google/cloud/texttospeech/v1beta1/cloud_tts.rb
|
157
|
-
- lib/google/cloud/text_to_speech/v1beta1/text_to_speech_client.rb
|
158
|
-
- lib/google/cloud/text_to_speech/v1beta1/text_to_speech_client_config.json
|
159
209
|
- lib/google/cloud/text_to_speech/version.rb
|
160
|
-
|
161
|
-
- lib/google/cloud/texttospeech/v1/cloud_tts_services_pb.rb
|
162
|
-
- lib/google/cloud/texttospeech/v1beta1/cloud_tts_pb.rb
|
163
|
-
- lib/google/cloud/texttospeech/v1beta1/cloud_tts_services_pb.rb
|
164
|
-
homepage: https://github.com/googleapis/googleapis
|
210
|
+
homepage: https://github.com/googleapis/google-cloud-ruby
|
165
211
|
licenses:
|
166
212
|
- Apache-2.0
|
167
213
|
metadata: {}
|
@@ -183,5 +229,5 @@ requirements: []
|
|
183
229
|
rubygems_version: 3.0.6
|
184
230
|
signing_key:
|
185
231
|
specification_version: 4
|
186
|
-
summary: API Client library for Cloud Text-to-Speech API
|
232
|
+
summary: API Client library for the Cloud Text-to-Speech API
|
187
233
|
test_files: []
|