azure_stt 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
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,116 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Module: AzureSTT::Types
8
+
9
+ &mdash; Documentation by YARD 0.9.26
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="../css/style.css" type="text/css" />
14
+
15
+ <link rel="stylesheet" href="../css/common.css" type="text/css" />
16
+
17
+ <script type="text/javascript">
18
+ pathId = "AzureSTT::Types";
19
+ relpath = '../';
20
+ </script>
21
+
22
+
23
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
24
+
25
+ <script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
26
+
27
+
28
+ </head>
29
+ <body>
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="../class_list.html?1"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
38
+
39
+ <a href="../_index.html">Index (T)</a> &raquo;
40
+ <span class='title'><span class='object_link'><a href="../AzureSTT.html" title="AzureSTT (module)">AzureSTT</a></span></span>
41
+ &raquo;
42
+ <span class="title">Types</span>
43
+
44
+ </div>
45
+
46
+ <div id="search">
47
+
48
+ <a class="full_list_link" id="class_list_link"
49
+ href="../class_list.html">
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
56
+ </a>
57
+
58
+ </div>
59
+ <div class="clear"></div>
60
+ </div>
61
+
62
+ <div id="content"><h1>Module: AzureSTT::Types
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+ <dl>
80
+ <dt>Defined in:</dt>
81
+ <dd>lib/azure_stt/models.rb</dd>
82
+ </dl>
83
+
84
+ </div>
85
+
86
+ <h2>Overview</h2><div class="docstring">
87
+ <div class="discussion">
88
+
89
+ <p>Include Dry.Types()</p>
90
+
91
+
92
+ </div>
93
+ </div>
94
+ <div class="tags">
95
+
96
+
97
+ </div>
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+ </div>
107
+
108
+ <div id="footer">
109
+ Generated on Thu Jun 24 14:16:27 2021 by
110
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
111
+ 0.9.26 (ruby-2.6.6).
112
+ </div>
113
+
114
+ </div>
115
+ </body>
116
+ </html>
@@ -0,0 +1,121 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Module: AzureStt
8
+
9
+ &mdash; Documentation by YARD 0.9.26
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" />
14
+
15
+ <link rel="stylesheet" href="css/common.css" type="text/css" />
16
+
17
+ <script type="text/javascript">
18
+ pathId = "AzureStt";
19
+ relpath = '';
20
+ </script>
21
+
22
+
23
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
24
+
25
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
26
+
27
+
28
+ </head>
29
+ <body>
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="class_list.html?1"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
38
+
39
+ <a href="_index.html">Index (A)</a> &raquo;
40
+
41
+
42
+ <span class="title">AzureStt</span>
43
+
44
+ </div>
45
+
46
+ <div id="search">
47
+
48
+ <a class="full_list_link" id="class_list_link"
49
+ href="class_list.html">
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
56
+ </a>
57
+
58
+ </div>
59
+ <div class="clear"></div>
60
+ </div>
61
+
62
+ <div id="content"><h1>Module: AzureStt
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+ <dl>
80
+ <dt>Defined in:</dt>
81
+ <dd>lib/azure_stt/version.rb</dd>
82
+ </dl>
83
+
84
+ </div>
85
+
86
+
87
+
88
+ <h2>
89
+ Constant Summary
90
+ <small><a href="#" class="constants_summary_toggle">collapse</a></small>
91
+ </h2>
92
+
93
+ <dl class="constants">
94
+
95
+ <dt id="VERSION-constant" class="">VERSION =
96
+
97
+ </dt>
98
+ <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>0.1.0</span><span class='tstring_end'>&#39;</span></span></pre></dd>
99
+
100
+ </dl>
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+ </div>
112
+
113
+ <div id="footer">
114
+ Generated on Thu Jun 24 14:16:27 2021 by
115
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
116
+ 0.9.26 (ruby-2.6.6).
117
+ </div>
118
+
119
+ </div>
120
+ </body>
121
+ </html>
data/docs/_index.html ADDED
@@ -0,0 +1,392 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Documentation by YARD 0.9.26
8
+
9
+ </title>
10
+
11
+ <link rel="stylesheet" href="css/style.css" type="text/css" />
12
+
13
+ <link rel="stylesheet" href="css/common.css" type="text/css" />
14
+
15
+ <script type="text/javascript">
16
+ pathId = null;
17
+ relpath = '';
18
+ </script>
19
+
20
+
21
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
22
+
23
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
24
+
25
+
26
+ </head>
27
+ <body>
28
+ <div class="nav_wrap">
29
+ <iframe id="nav" src="class_list.html?1"></iframe>
30
+ <div id="resizer"></div>
31
+ </div>
32
+
33
+ <div id="main" tabindex="-1">
34
+ <div id="header">
35
+ <div id="menu">
36
+
37
+ </div>
38
+
39
+ <div id="search">
40
+
41
+ <a class="full_list_link" id="class_list_link"
42
+ href="class_list.html">
43
+
44
+ <svg width="24" height="24">
45
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
46
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
47
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
48
+ </svg>
49
+ </a>
50
+
51
+ </div>
52
+ <div class="clear"></div>
53
+ </div>
54
+
55
+ <div id="content"><h1 class="noborder title">Documentation by YARD 0.9.26</h1>
56
+ <div id="listing">
57
+ <h1 class="alphaindex">Alphabetic Index</h1>
58
+
59
+ <h2>File Listing</h2>
60
+ <ul id="files" class="index_inline_list">
61
+
62
+
63
+ <li class="r1"><a href="index.html" title="README">README</a></li>
64
+
65
+
66
+ </ul>
67
+
68
+ <div class="clear"></div>
69
+ <h2>Namespace Listing A-Z</h2>
70
+
71
+
72
+
73
+
74
+ <table>
75
+ <tr>
76
+ <td valign='top' width="33%">
77
+
78
+
79
+ <ul id="alpha_A" class="alpha">
80
+ <li class="letter">A</li>
81
+ <ul>
82
+
83
+ <li>
84
+ <span class='object_link'><a href="AzureSTT.html" title="AzureSTT (module)">AzureSTT</a></span>
85
+
86
+ </li>
87
+
88
+ <li>
89
+ <span class='object_link'><a href="AzureStt_.html" title="AzureStt (module)">AzureStt</a></span>
90
+
91
+ </li>
92
+
93
+ </ul>
94
+ </ul>
95
+
96
+
97
+ <ul id="alpha_B" class="alpha">
98
+ <li class="letter">B</li>
99
+ <ul>
100
+
101
+ <li>
102
+ <span class='object_link'><a href="AzureSTT/Models/Base.html" title="AzureSTT::Models::Base (class)">Base</a></span>
103
+
104
+ <small>(AzureSTT::Models)</small>
105
+
106
+ </li>
107
+
108
+ <li>
109
+ <span class='object_link'><a href="AzureSTT/Parsers/Base.html" title="AzureSTT::Parsers::Base (class)">Base</a></span>
110
+
111
+ <small>(AzureSTT::Parsers)</small>
112
+
113
+ </li>
114
+
115
+ </ul>
116
+ </ul>
117
+
118
+
119
+ <ul id="alpha_C" class="alpha">
120
+ <li class="letter">C</li>
121
+ <ul>
122
+
123
+ <li>
124
+ <span class='object_link'><a href="AzureSTT/Client.html" title="AzureSTT::Client (class)">Client</a></span>
125
+
126
+ <small>(AzureSTT)</small>
127
+
128
+ </li>
129
+
130
+ <li>
131
+ <span class='object_link'><a href="AzureSTT/Models/CombinedRecognizedPhrases.html" title="AzureSTT::Models::CombinedRecognizedPhrases (class)">CombinedRecognizedPhrases</a></span>
132
+
133
+ <small>(AzureSTT::Models)</small>
134
+
135
+ </li>
136
+
137
+ <li>
138
+ <span class='object_link'><a href="AzureSTT/Parsers/CombinedRecognizedPhrases.html" title="AzureSTT::Parsers::CombinedRecognizedPhrases (class)">CombinedRecognizedPhrases</a></span>
139
+
140
+ <small>(AzureSTT::Parsers)</small>
141
+
142
+ </li>
143
+
144
+ <li>
145
+ <span class='object_link'><a href="AzureSTT/Configuration.html" title="AzureSTT::Configuration (class)">Configuration</a></span>
146
+
147
+ <small>(AzureSTT)</small>
148
+
149
+ </li>
150
+
151
+ </ul>
152
+ </ul>
153
+
154
+
155
+ <ul id="alpha_E" class="alpha">
156
+ <li class="letter">E</li>
157
+ <ul>
158
+
159
+ <li>
160
+ <span class='object_link'><a href="AzureSTT/Error.html" title="AzureSTT::Error (class)">Error</a></span>
161
+
162
+ <small>(AzureSTT)</small>
163
+
164
+ </li>
165
+
166
+ </ul>
167
+ </ul>
168
+
169
+
170
+ <ul id="alpha_F" class="alpha">
171
+ <li class="letter">F</li>
172
+ <ul>
173
+
174
+ <li>
175
+ <span class='object_link'><a href="AzureSTT/Models/File.html" title="AzureSTT::Models::File (class)">File</a></span>
176
+
177
+ <small>(AzureSTT::Models)</small>
178
+
179
+ </li>
180
+
181
+ <li>
182
+ <span class='object_link'><a href="AzureSTT/Parsers/File.html" title="AzureSTT::Parsers::File (class)">File</a></span>
183
+
184
+ <small>(AzureSTT::Parsers)</small>
185
+
186
+ </li>
187
+
188
+ </ul>
189
+ </ul>
190
+
191
+
192
+ <ul id="alpha_M" class="alpha">
193
+ <li class="letter">M</li>
194
+ <ul>
195
+
196
+ <li>
197
+ <span class='object_link'><a href="AzureSTT/Models.html" title="AzureSTT::Models (module)">Models</a></span>
198
+
199
+ <small>(AzureSTT)</small>
200
+
201
+ </li>
202
+
203
+ </ul>
204
+ </ul>
205
+
206
+
207
+ <ul id="alpha_N" class="alpha">
208
+ <li class="letter">N</li>
209
+ <ul>
210
+
211
+ <li>
212
+ <span class='object_link'><a href="AzureSTT/NetError.html" title="AzureSTT::NetError (class)">NetError</a></span>
213
+
214
+ <small>(AzureSTT)</small>
215
+
216
+ </li>
217
+
218
+ </ul>
219
+ </ul>
220
+
221
+
222
+ </td><td valign='top' width="33%">
223
+
224
+
225
+ <ul id="alpha_P" class="alpha">
226
+ <li class="letter">P</li>
227
+ <ul>
228
+
229
+ <li>
230
+ <span class='object_link'><a href="AzureSTT/Parsers.html" title="AzureSTT::Parsers (module)">Parsers</a></span>
231
+
232
+ <small>(AzureSTT)</small>
233
+
234
+ </li>
235
+
236
+ </ul>
237
+ </ul>
238
+
239
+
240
+ <ul id="alpha_R" class="alpha">
241
+ <li class="letter">R</li>
242
+ <ul>
243
+
244
+ <li>
245
+ <span class='object_link'><a href="AzureSTT/Models/RecognizedPhrase.html" title="AzureSTT::Models::RecognizedPhrase (class)">RecognizedPhrase</a></span>
246
+
247
+ <small>(AzureSTT::Models)</small>
248
+
249
+ </li>
250
+
251
+ <li>
252
+ <span class='object_link'><a href="AzureSTT/Parsers/RecognizedPhrase.html" title="AzureSTT::Parsers::RecognizedPhrase (class)">RecognizedPhrase</a></span>
253
+
254
+ <small>(AzureSTT::Parsers)</small>
255
+
256
+ </li>
257
+
258
+ <li>
259
+ <span class='object_link'><a href="AzureSTT/Models/Report.html" title="AzureSTT::Models::Report (class)">Report</a></span>
260
+
261
+ <small>(AzureSTT::Models)</small>
262
+
263
+ </li>
264
+
265
+ <li>
266
+ <span class='object_link'><a href="AzureSTT/Parsers/Report.html" title="AzureSTT::Parsers::Report (class)">Report</a></span>
267
+
268
+ <small>(AzureSTT::Parsers)</small>
269
+
270
+ </li>
271
+
272
+ <li>
273
+ <span class='object_link'><a href="AzureSTT/Models/Result.html" title="AzureSTT::Models::Result (class)">Result</a></span>
274
+
275
+ <small>(AzureSTT::Models)</small>
276
+
277
+ </li>
278
+
279
+ <li>
280
+ <span class='object_link'><a href="AzureSTT/Parsers/Result.html" title="AzureSTT::Parsers::Result (class)">Result</a></span>
281
+
282
+ <small>(AzureSTT::Parsers)</small>
283
+
284
+ </li>
285
+
286
+ </ul>
287
+ </ul>
288
+
289
+
290
+ <ul id="alpha_S" class="alpha">
291
+ <li class="letter">S</li>
292
+ <ul>
293
+
294
+ <li>
295
+ <span class='object_link'><a href="AzureSTT/Models/Sentence.html" title="AzureSTT::Models::Sentence (class)">Sentence</a></span>
296
+
297
+ <small>(AzureSTT::Models)</small>
298
+
299
+ </li>
300
+
301
+ <li>
302
+ <span class='object_link'><a href="AzureSTT/Parsers/Sentence.html" title="AzureSTT::Parsers::Sentence (class)">Sentence</a></span>
303
+
304
+ <small>(AzureSTT::Parsers)</small>
305
+
306
+ </li>
307
+
308
+ <li>
309
+ <span class='object_link'><a href="AzureSTT/ServiceError.html" title="AzureSTT::ServiceError (class)">ServiceError</a></span>
310
+
311
+ <small>(AzureSTT)</small>
312
+
313
+ </li>
314
+
315
+ <li>
316
+ <span class='object_link'><a href="AzureSTT/Session.html" title="AzureSTT::Session (class)">Session</a></span>
317
+
318
+ <small>(AzureSTT)</small>
319
+
320
+ </li>
321
+
322
+ </ul>
323
+ </ul>
324
+
325
+
326
+ <ul id="alpha_T" class="alpha">
327
+ <li class="letter">T</li>
328
+ <ul>
329
+
330
+ <li>
331
+ <span class='object_link'><a href="AzureSTT/Models/Transcription.html" title="AzureSTT::Models::Transcription (class)">Transcription</a></span>
332
+
333
+ <small>(AzureSTT::Models)</small>
334
+
335
+ </li>
336
+
337
+ <li>
338
+ <span class='object_link'><a href="AzureSTT/Parsers/Transcription.html" title="AzureSTT::Parsers::Transcription (class)">Transcription</a></span>
339
+
340
+ <small>(AzureSTT::Parsers)</small>
341
+
342
+ </li>
343
+
344
+ <li>
345
+ <span class='object_link'><a href="AzureSTT/Types.html" title="AzureSTT::Types (module)">Types</a></span>
346
+
347
+ <small>(AzureSTT)</small>
348
+
349
+ </li>
350
+
351
+ </ul>
352
+ </ul>
353
+
354
+
355
+ <ul id="alpha_W" class="alpha">
356
+ <li class="letter">W</li>
357
+ <ul>
358
+
359
+ <li>
360
+ <span class='object_link'><a href="AzureSTT/Models/Word.html" title="AzureSTT::Models::Word (class)">Word</a></span>
361
+
362
+ <small>(AzureSTT::Models)</small>
363
+
364
+ </li>
365
+
366
+ <li>
367
+ <span class='object_link'><a href="AzureSTT/Parsers/Word.html" title="AzureSTT::Parsers::Word (class)">Word</a></span>
368
+
369
+ <small>(AzureSTT::Parsers)</small>
370
+
371
+ </li>
372
+
373
+ </ul>
374
+ </ul>
375
+
376
+ </td>
377
+ </tr>
378
+ </table>
379
+
380
+ </div>
381
+
382
+ </div>
383
+
384
+ <div id="footer">
385
+ Generated on Thu Jun 24 14:16:27 2021 by
386
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
387
+ 0.9.26 (ruby-2.6.6).
388
+ </div>
389
+
390
+ </div>
391
+ </body>
392
+ </html>