azure_stt 0.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 (89) hide show
  1. checksums.yaml +7 -0
  2. data/.github/dependabot.yml +6 -0
  3. data/.github/workflows/ci.yml +33 -0
  4. data/.gitignore +56 -0
  5. data/.rubocop.yml +22 -0
  6. data/CHANGELOG.md +28 -0
  7. data/CODE_OF_CONDUCT.md +74 -0
  8. data/Gemfile +24 -0
  9. data/Gemfile.lock +141 -0
  10. data/LICENSE +21 -0
  11. data/README.md +129 -0
  12. data/Rakefile +27 -0
  13. data/azure_stt.gemspec +29 -0
  14. data/bin/console +15 -0
  15. data/bin/setup +8 -0
  16. data/docs/AzureBatchTranscription.html +301 -0
  17. data/docs/AzureBatchTranscription/Configuration.html +212 -0
  18. data/docs/AzureSTT.html +305 -0
  19. data/docs/AzureSTT/Client.html +1008 -0
  20. data/docs/AzureSTT/Configuration.html +282 -0
  21. data/docs/AzureSTT/Error.html +305 -0
  22. data/docs/AzureSTT/Models.html +135 -0
  23. data/docs/AzureSTT/Models/Base.html +139 -0
  24. data/docs/AzureSTT/Models/CombinedRecognizedPhrases.html +538 -0
  25. data/docs/AzureSTT/Models/File.html +794 -0
  26. data/docs/AzureSTT/Models/RecognizedPhrase.html +769 -0
  27. data/docs/AzureSTT/Models/Report.html +384 -0
  28. data/docs/AzureSTT/Models/Result.html +796 -0
  29. data/docs/AzureSTT/Models/Sentence.html +615 -0
  30. data/docs/AzureSTT/Models/Transcription.html +1415 -0
  31. data/docs/AzureSTT/Models/Word.html +615 -0
  32. data/docs/AzureSTT/NetError.html +159 -0
  33. data/docs/AzureSTT/Parsers.html +128 -0
  34. data/docs/AzureSTT/Parsers/Base.html +404 -0
  35. data/docs/AzureSTT/Parsers/CombinedRecognizedPhrases.html +156 -0
  36. data/docs/AzureSTT/Parsers/File.html +156 -0
  37. data/docs/AzureSTT/Parsers/RecognizedPhrase.html +156 -0
  38. data/docs/AzureSTT/Parsers/Report.html +156 -0
  39. data/docs/AzureSTT/Parsers/Result.html +156 -0
  40. data/docs/AzureSTT/Parsers/Sentence.html +156 -0
  41. data/docs/AzureSTT/Parsers/Transcription.html +156 -0
  42. data/docs/AzureSTT/Parsers/Word.html +156 -0
  43. data/docs/AzureSTT/ServiceError.html +159 -0
  44. data/docs/AzureSTT/Session.html +767 -0
  45. data/docs/AzureSTT/Transcription.html +635 -0
  46. data/docs/AzureSTT/Types.html +116 -0
  47. data/docs/AzureStt_.html +121 -0
  48. data/docs/_index.html +392 -0
  49. data/docs/class_list.html +51 -0
  50. data/docs/css/common.css +1 -0
  51. data/docs/css/full_list.css +58 -0
  52. data/docs/css/style.css +497 -0
  53. data/docs/file.README.html +201 -0
  54. data/docs/file_list.html +56 -0
  55. data/docs/frames.html +17 -0
  56. data/docs/index.html +201 -0
  57. data/docs/js/app.js +314 -0
  58. data/docs/js/full_list.js +216 -0
  59. data/docs/js/jquery.js +4 -0
  60. data/docs/method_list.html +707 -0
  61. data/docs/top-level-namespace.html +110 -0
  62. data/env.sample +2 -0
  63. data/lib/azure_stt.rb +20 -0
  64. data/lib/azure_stt/client.rb +189 -0
  65. data/lib/azure_stt/configuration.rb +28 -0
  66. data/lib/azure_stt/errors.rb +25 -0
  67. data/lib/azure_stt/models.rb +30 -0
  68. data/lib/azure_stt/models/base.rb +27 -0
  69. data/lib/azure_stt/models/combined_recognized_phrases.rb +48 -0
  70. data/lib/azure_stt/models/file.rb +72 -0
  71. data/lib/azure_stt/models/recognized_phrase.rb +70 -0
  72. data/lib/azure_stt/models/report.rb +31 -0
  73. data/lib/azure_stt/models/result.rb +76 -0
  74. data/lib/azure_stt/models/sentence.rb +53 -0
  75. data/lib/azure_stt/models/transcription.rb +185 -0
  76. data/lib/azure_stt/models/word.rb +54 -0
  77. data/lib/azure_stt/parsers.rb +19 -0
  78. data/lib/azure_stt/parsers/base.rb +42 -0
  79. data/lib/azure_stt/parsers/combined_recognized_phrases.rb +28 -0
  80. data/lib/azure_stt/parsers/file.rb +28 -0
  81. data/lib/azure_stt/parsers/recognized_phrase.rb +45 -0
  82. data/lib/azure_stt/parsers/report.rb +25 -0
  83. data/lib/azure_stt/parsers/result.rb +56 -0
  84. data/lib/azure_stt/parsers/sentence.rb +45 -0
  85. data/lib/azure_stt/parsers/transcription.rb +34 -0
  86. data/lib/azure_stt/parsers/word.rb +28 -0
  87. data/lib/azure_stt/session.rb +100 -0
  88. data/lib/azure_stt/version.rb +5 -0
  89. metadata +158 -0
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module AzureStt
4
+ VERSION = '0.1.0'
5
+ end
metadata ADDED
@@ -0,0 +1,158 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: azure_stt
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - François Pouly
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-06-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: dry_struct
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: httparty
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.17'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.17'
41
+ description: API Wrapper for the Microsoft Translator Text API 3.0 (Cognitive Services)
42
+ email:
43
+ - francois.pouly@perfect-memory.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".github/dependabot.yml"
49
+ - ".github/workflows/ci.yml"
50
+ - ".gitignore"
51
+ - ".rubocop.yml"
52
+ - CHANGELOG.md
53
+ - CODE_OF_CONDUCT.md
54
+ - Gemfile
55
+ - Gemfile.lock
56
+ - LICENSE
57
+ - README.md
58
+ - Rakefile
59
+ - azure_stt.gemspec
60
+ - bin/console
61
+ - bin/setup
62
+ - docs/AzureBatchTranscription.html
63
+ - docs/AzureBatchTranscription/Configuration.html
64
+ - docs/AzureSTT.html
65
+ - docs/AzureSTT/Client.html
66
+ - docs/AzureSTT/Configuration.html
67
+ - docs/AzureSTT/Error.html
68
+ - docs/AzureSTT/Models.html
69
+ - docs/AzureSTT/Models/Base.html
70
+ - docs/AzureSTT/Models/CombinedRecognizedPhrases.html
71
+ - docs/AzureSTT/Models/File.html
72
+ - docs/AzureSTT/Models/RecognizedPhrase.html
73
+ - docs/AzureSTT/Models/Report.html
74
+ - docs/AzureSTT/Models/Result.html
75
+ - docs/AzureSTT/Models/Sentence.html
76
+ - docs/AzureSTT/Models/Transcription.html
77
+ - docs/AzureSTT/Models/Word.html
78
+ - docs/AzureSTT/NetError.html
79
+ - docs/AzureSTT/Parsers.html
80
+ - docs/AzureSTT/Parsers/Base.html
81
+ - docs/AzureSTT/Parsers/CombinedRecognizedPhrases.html
82
+ - docs/AzureSTT/Parsers/File.html
83
+ - docs/AzureSTT/Parsers/RecognizedPhrase.html
84
+ - docs/AzureSTT/Parsers/Report.html
85
+ - docs/AzureSTT/Parsers/Result.html
86
+ - docs/AzureSTT/Parsers/Sentence.html
87
+ - docs/AzureSTT/Parsers/Transcription.html
88
+ - docs/AzureSTT/Parsers/Word.html
89
+ - docs/AzureSTT/ServiceError.html
90
+ - docs/AzureSTT/Session.html
91
+ - docs/AzureSTT/Transcription.html
92
+ - docs/AzureSTT/Types.html
93
+ - docs/AzureStt_.html
94
+ - docs/_index.html
95
+ - docs/class_list.html
96
+ - docs/css/common.css
97
+ - docs/css/full_list.css
98
+ - docs/css/style.css
99
+ - docs/file.README.html
100
+ - docs/file_list.html
101
+ - docs/frames.html
102
+ - docs/index.html
103
+ - docs/js/app.js
104
+ - docs/js/full_list.js
105
+ - docs/js/jquery.js
106
+ - docs/method_list.html
107
+ - docs/top-level-namespace.html
108
+ - env.sample
109
+ - lib/azure_stt.rb
110
+ - lib/azure_stt/client.rb
111
+ - lib/azure_stt/configuration.rb
112
+ - lib/azure_stt/errors.rb
113
+ - lib/azure_stt/models.rb
114
+ - lib/azure_stt/models/base.rb
115
+ - lib/azure_stt/models/combined_recognized_phrases.rb
116
+ - lib/azure_stt/models/file.rb
117
+ - lib/azure_stt/models/recognized_phrase.rb
118
+ - lib/azure_stt/models/report.rb
119
+ - lib/azure_stt/models/result.rb
120
+ - lib/azure_stt/models/sentence.rb
121
+ - lib/azure_stt/models/transcription.rb
122
+ - lib/azure_stt/models/word.rb
123
+ - lib/azure_stt/parsers.rb
124
+ - lib/azure_stt/parsers/base.rb
125
+ - lib/azure_stt/parsers/combined_recognized_phrases.rb
126
+ - lib/azure_stt/parsers/file.rb
127
+ - lib/azure_stt/parsers/recognized_phrase.rb
128
+ - lib/azure_stt/parsers/report.rb
129
+ - lib/azure_stt/parsers/result.rb
130
+ - lib/azure_stt/parsers/sentence.rb
131
+ - lib/azure_stt/parsers/transcription.rb
132
+ - lib/azure_stt/parsers/word.rb
133
+ - lib/azure_stt/session.rb
134
+ - lib/azure_stt/version.rb
135
+ homepage: https://github.com/PerfectMemory/azure_stt
136
+ licenses:
137
+ - MIT
138
+ metadata: {}
139
+ post_install_message:
140
+ rdoc_options: []
141
+ require_paths:
142
+ - lib
143
+ required_ruby_version: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - ">="
146
+ - !ruby/object:Gem::Version
147
+ version: '2.6'
148
+ required_rubygems_version: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ requirements: []
154
+ rubygems_version: 3.0.3
155
+ signing_key:
156
+ specification_version: 4
157
+ summary: API Wrapper for the Microsoft Translator Text API 3.0
158
+ test_files: []