google-cloud-text_to_speech 0.1.1 → 0.1.2
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/lib/google/cloud/text_to_speech.rb +6 -0
- data/lib/google/cloud/text_to_speech/v1.rb +6 -0
- data/lib/google/cloud/text_to_speech/v1/credentials.rb +1 -0
- data/lib/google/cloud/text_to_speech/v1/doc/google/cloud/texttospeech/v1/cloud_tts.rb +1 -0
- data/lib/google/cloud/text_to_speech/v1/doc/overview.rb +1 -0
- data/lib/google/cloud/text_to_speech/v1/text_to_speech_client.rb +2 -0
- data/lib/google/cloud/texttospeech/v1/cloud_tts_pb.rb +1 -0
- data/lib/google/cloud/texttospeech/v1/cloud_tts_services_pb.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a04657495884a194b1665a5b52c770883d48906bcfadb0d8e086b8be88bd09a7
|
|
4
|
+
data.tar.gz: a4cbd30ccef263e4f00e92953e5994ede298a9d1db52dd746245f600d32ac284
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46806b08034e693ded1246023a7761a8a09913ea6762abe94a9089476373f97ddae32b93de050d0daa429b1b907dbaa822026ad8a90a4b6e9be451757049aae8
|
|
7
|
+
data.tar.gz: 4beada78a2fdd6aa0fe8a55c4a8f3c25c594c2a7f987f33f9aa1f1c3e75caccda3cf6c8c1299fc41c85d3c2995bff8fbbb8656401dc93b2960f2df6bae792afb
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
+
|
|
15
16
|
require "google/gax"
|
|
16
17
|
require "pathname"
|
|
17
18
|
|
|
@@ -36,6 +37,11 @@ module Google
|
|
|
36
37
|
# 3. [Enable the Cloud Text-to-Speech API.](https://console.cloud.google.com/apis/library/texttospeech.googleapis.com)
|
|
37
38
|
# 4. [Setup Authentication.](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/google-cloud/master/guides/authentication)
|
|
38
39
|
#
|
|
40
|
+
# ### Installation
|
|
41
|
+
# ```
|
|
42
|
+
# $ gem install google-cloud-text_to_speech
|
|
43
|
+
# ```
|
|
44
|
+
#
|
|
39
45
|
# ### Next Steps
|
|
40
46
|
# - Read the [Cloud Text-to-Speech API Product documentation][Product Documentation]
|
|
41
47
|
# to learn more about the product and see How-to Guides.
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
+
|
|
15
16
|
require "google/cloud/text_to_speech/v1/text_to_speech_client"
|
|
16
17
|
|
|
17
18
|
module Google
|
|
@@ -36,6 +37,11 @@ module Google
|
|
|
36
37
|
# 3. [Enable the Cloud Text-to-Speech API.](https://console.cloud.google.com/apis/library/texttospeech.googleapis.com)
|
|
37
38
|
# 4. [Setup Authentication.](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/google-cloud/master/guides/authentication)
|
|
38
39
|
#
|
|
40
|
+
# ### Installation
|
|
41
|
+
# ```
|
|
42
|
+
# $ gem install google-cloud-text_to_speech
|
|
43
|
+
# ```
|
|
44
|
+
#
|
|
39
45
|
# ### Next Steps
|
|
40
46
|
# - Read the [Cloud Text-to-Speech API Product documentation][Product Documentation]
|
|
41
47
|
# to learn more about the product and see How-to Guides.
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
# For the short term, the refresh process will only be runnable by Google
|
|
20
20
|
# engineers.
|
|
21
21
|
|
|
22
|
+
|
|
22
23
|
require "json"
|
|
23
24
|
require "pathname"
|
|
24
25
|
|
|
@@ -36,6 +37,7 @@ module Google
|
|
|
36
37
|
# @!attribute [r] text_to_speech_stub
|
|
37
38
|
# @return [Google::Cloud::Texttospeech::V1::TextToSpeech::Stub]
|
|
38
39
|
class TextToSpeechClient
|
|
40
|
+
# @private
|
|
39
41
|
attr_reader :text_to_speech_stub
|
|
40
42
|
|
|
41
43
|
# The default address of the service.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-text_to_speech
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.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: 2018-
|
|
11
|
+
date: 2018-09-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-gax
|