cloudmersive-voice-recognition-api-client 2.0.1 → 2.1.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.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +7 -0
  3. data/README.md +108 -0
  4. data/Rakefile +8 -0
  5. data/cloudmersive-voice-recognition-api-client.gemspec +45 -0
  6. data/docs/RecognizeApi.md +68 -0
  7. data/docs/SpeakApi.md +64 -0
  8. data/docs/SpeechRecognitionResult.md +9 -0
  9. data/docs/TextToSpeechRequest.md +11 -0
  10. data/docs/TokenTimestamp.md +12 -0
  11. data/git_push.sh +55 -0
  12. data/lib/cloudmersive-voice-recognition-api-client/api/recognize_api.rb +80 -0
  13. data/lib/cloudmersive-voice-recognition-api-client/api/speak_api.rb +73 -0
  14. data/lib/cloudmersive-voice-recognition-api-client/api_client.rb +391 -0
  15. data/lib/cloudmersive-voice-recognition-api-client/api_error.rb +38 -0
  16. data/lib/cloudmersive-voice-recognition-api-client/configuration.rb +209 -0
  17. data/lib/cloudmersive-voice-recognition-api-client/models/speech_recognition_result.rb +198 -0
  18. data/lib/cloudmersive-voice-recognition-api-client/models/text_to_speech_request.rb +216 -0
  19. data/lib/cloudmersive-voice-recognition-api-client/models/token_timestamp.rb +226 -0
  20. data/lib/cloudmersive-voice-recognition-api-client/version.rb +15 -0
  21. data/lib/cloudmersive-voice-recognition-api-client.rb +44 -0
  22. data/spec/api/recognize_api_spec.rb +49 -0
  23. data/spec/api/speak_api_spec.rb +47 -0
  24. data/spec/api_client_spec.rb +243 -0
  25. data/spec/configuration_spec.rb +42 -0
  26. data/spec/models/speech_recognition_result_spec.rb +47 -0
  27. data/spec/models/text_to_speech_request_spec.rb +59 -0
  28. data/spec/models/token_timestamp_spec.rb +65 -0
  29. data/spec/spec_helper.rb +111 -0
  30. metadata +47 -19
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudmersive-voice-recognition-api-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cloudmersive
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-31 00:00:00.000000000 Z
11
+ date: 2026-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -34,42 +34,42 @@ dependencies:
34
34
  name: json
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - ">="
38
- - !ruby/object:Gem::Version
39
- version: 2.1.0
40
37
  - - "~>"
41
38
  - !ruby/object:Gem::Version
42
39
  version: '2.1'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 2.1.0
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - ">="
48
- - !ruby/object:Gem::Version
49
- version: 2.1.0
50
47
  - - "~>"
51
48
  - !ruby/object:Gem::Version
52
49
  version: '2.1'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 2.1.0
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: rspec
55
55
  requirement: !ruby/object:Gem::Requirement
56
56
  requirements:
57
- - - ">="
58
- - !ruby/object:Gem::Version
59
- version: 3.6.0
60
57
  - - "~>"
61
58
  - !ruby/object:Gem::Version
62
59
  version: '3.6'
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 3.6.0
63
63
  type: :development
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - ">="
68
- - !ruby/object:Gem::Version
69
- version: 3.6.0
70
67
  - - "~>"
71
68
  - !ruby/object:Gem::Version
72
69
  version: '3.6'
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: 3.6.0
73
73
  - !ruby/object:Gem::Dependency
74
74
  name: vcr
75
75
  requirement: !ruby/object:Gem::Requirement
@@ -197,12 +197,40 @@ email:
197
197
  executables: []
198
198
  extensions: []
199
199
  extra_rdoc_files: []
200
- files: []
200
+ files:
201
+ - "./Gemfile"
202
+ - "./README.md"
203
+ - "./Rakefile"
204
+ - "./cloudmersive-voice-recognition-api-client.gemspec"
205
+ - "./docs/RecognizeApi.md"
206
+ - "./docs/SpeakApi.md"
207
+ - "./docs/SpeechRecognitionResult.md"
208
+ - "./docs/TextToSpeechRequest.md"
209
+ - "./docs/TokenTimestamp.md"
210
+ - "./git_push.sh"
211
+ - "./lib/cloudmersive-voice-recognition-api-client.rb"
212
+ - "./lib/cloudmersive-voice-recognition-api-client/api/recognize_api.rb"
213
+ - "./lib/cloudmersive-voice-recognition-api-client/api/speak_api.rb"
214
+ - "./lib/cloudmersive-voice-recognition-api-client/api_client.rb"
215
+ - "./lib/cloudmersive-voice-recognition-api-client/api_error.rb"
216
+ - "./lib/cloudmersive-voice-recognition-api-client/configuration.rb"
217
+ - "./lib/cloudmersive-voice-recognition-api-client/models/speech_recognition_result.rb"
218
+ - "./lib/cloudmersive-voice-recognition-api-client/models/text_to_speech_request.rb"
219
+ - "./lib/cloudmersive-voice-recognition-api-client/models/token_timestamp.rb"
220
+ - "./lib/cloudmersive-voice-recognition-api-client/version.rb"
221
+ - "./spec/api/recognize_api_spec.rb"
222
+ - "./spec/api/speak_api_spec.rb"
223
+ - "./spec/api_client_spec.rb"
224
+ - "./spec/configuration_spec.rb"
225
+ - "./spec/models/speech_recognition_result_spec.rb"
226
+ - "./spec/models/text_to_speech_request_spec.rb"
227
+ - "./spec/models/token_timestamp_spec.rb"
228
+ - "./spec/spec_helper.rb"
201
229
  homepage: https://www.cloudmersive.com/voice-recognition-and-speech-api
202
230
  licenses:
203
231
  - Apache 2.0
204
232
  metadata: {}
205
- post_install_message:
233
+ post_install_message:
206
234
  rdoc_options: []
207
235
  require_paths:
208
236
  - lib
@@ -217,8 +245,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
217
245
  - !ruby/object:Gem::Version
218
246
  version: '0'
219
247
  requirements: []
220
- rubygems_version: 3.0.3
221
- signing_key:
248
+ rubygems_version: 3.5.16
249
+ signing_key:
222
250
  specification_version: 4
223
251
  summary: The most powerful and cost-effective speech recognition and voice AI APIs,
224
252
  continuously updated.