sms77 0.3.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +6 -4
  3. data/.idea/.gitignore +8 -0
  4. data/.idea/inspectionProfiles/Project_Default.xml +6 -0
  5. data/.idea/modules.xml +8 -0
  6. data/.idea/ruby-client.iml +18 -0
  7. data/.idea/vcs.xml +6 -0
  8. data/Gemfile +2 -2
  9. data/LICENSE +20 -20
  10. data/README.md +41 -33
  11. data/Rakefile +5 -5
  12. data/doc/Sms77/Client.html +230 -0
  13. data/doc/Sms77/Contacts/Action.html +131 -0
  14. data/doc/Sms77/Contacts.html +126 -0
  15. data/doc/Sms77/Endpoint.html +187 -0
  16. data/doc/Sms77/Hooks/Action.html +131 -0
  17. data/doc/Sms77/Hooks/EventType.html +146 -0
  18. data/doc/Sms77/Hooks/RequestMethod.html +131 -0
  19. data/doc/Sms77/Hooks/Validator.html +598 -0
  20. data/doc/Sms77/Hooks.html +126 -0
  21. data/doc/Sms77/Journal/Type.html +136 -0
  22. data/doc/Sms77/Journal/Validator.html +394 -0
  23. data/doc/Sms77/Journal.html +126 -0
  24. data/doc/Sms77/Lookup/Type.html +136 -0
  25. data/doc/Sms77/Lookup.html +126 -0
  26. data/doc/Sms77/Resource.html +870 -0
  27. data/doc/Sms77/Resources/Analytics.html +263 -0
  28. data/doc/Sms77/Resources/Balance.html +246 -0
  29. data/doc/Sms77/Resources/Contacts.html +449 -0
  30. data/doc/Sms77/Resources/Hooks.html +457 -0
  31. data/doc/Sms77/Resources/Journal.html +261 -0
  32. data/doc/Sms77/Resources/Lookup.html +540 -0
  33. data/doc/Sms77/Resources/Pricing.html +263 -0
  34. data/doc/Sms77/Resources/Sms.html +261 -0
  35. data/doc/Sms77/Resources/Status.html +261 -0
  36. data/doc/Sms77/Resources/Subaccounts.html +651 -0
  37. data/doc/Sms77/Resources/ValidateForVoice.html +261 -0
  38. data/doc/Sms77/Resources/Voice.html +261 -0
  39. data/doc/Sms77/Resources.html +128 -0
  40. data/doc/Sms77/Sms/Type.html +126 -0
  41. data/doc/Sms77/Sms.html +126 -0
  42. data/doc/Sms77/Subaccounts/Action.html +141 -0
  43. data/doc/Sms77/Subaccounts/Validator.html +490 -0
  44. data/doc/Sms77/Subaccounts.html +126 -0
  45. data/doc/Sms77/Util.html +1033 -0
  46. data/doc/Sms77.html +146 -0
  47. data/doc/_index.html +444 -0
  48. data/doc/class_list.html +51 -0
  49. data/doc/css/common.css +1 -0
  50. data/doc/css/full_list.css +58 -0
  51. data/doc/css/style.css +497 -0
  52. data/doc/file.README.html +112 -0
  53. data/doc/file_list.html +56 -0
  54. data/doc/frames.html +17 -0
  55. data/doc/index.html +112 -0
  56. data/doc/js/app.js +314 -0
  57. data/doc/js/full_list.js +216 -0
  58. data/doc/js/jquery.js +4 -0
  59. data/doc/method_list.html +563 -0
  60. data/doc/top-level-namespace.html +110 -0
  61. data/lib/sms77/client.rb +30 -29
  62. data/lib/sms77/contacts.rb +10 -9
  63. data/lib/sms77/endpoint.rb +17 -15
  64. data/lib/sms77/hooks.rb +67 -62
  65. data/lib/sms77/journal.rb +39 -38
  66. data/lib/sms77/lookup.rb +11 -10
  67. data/lib/sms77/resource.rb +94 -93
  68. data/lib/sms77/resources/analytics.rb +21 -16
  69. data/lib/sms77/resources/balance.rb +19 -15
  70. data/lib/sms77/resources/contacts.rb +38 -25
  71. data/lib/sms77/resources/hooks.rb +40 -29
  72. data/lib/sms77/resources/journal.rb +20 -15
  73. data/lib/sms77/resources/lookup.rb +47 -29
  74. data/lib/sms77/resources/pricing.rb +20 -15
  75. data/lib/sms77/resources/sms.rb +20 -15
  76. data/lib/sms77/resources/status.rb +20 -15
  77. data/lib/sms77/resources/subaccounts.rb +66 -0
  78. data/lib/sms77/resources/validate_for_voice.rb +20 -15
  79. data/lib/sms77/resources/voice.rb +20 -15
  80. data/lib/sms77/sms.rb +9 -8
  81. data/lib/sms77/subaccounts.rb +55 -0
  82. data/lib/sms77/util.rb +68 -67
  83. data/lib/sms77/version.rb +5 -5
  84. data/lib/sms77.rb +6 -6
  85. data/release.sh +5 -0
  86. data/sms77.gemspec +21 -21
  87. data/spec/EnvKeyStore.rb +14 -14
  88. data/spec/matchers.rb +22 -22
  89. data/spec/sms77/balance_spec.rb +12 -12
  90. data/spec/sms77/client_spec.rb +15 -15
  91. data/spec/sms77/contacts_spec.rb +129 -116
  92. data/spec/sms77/hooks_spec.rb +108 -105
  93. data/spec/sms77/instance_spec.rb +22 -20
  94. data/spec/sms77/journal_spec.rb +86 -86
  95. data/spec/sms77/lookup_spec.rb +179 -179
  96. data/spec/sms77/pricing_spec.rb +76 -76
  97. data/spec/sms77/sms_spec.rb +103 -103
  98. data/spec/sms77/subaccounts_spec.rb +121 -0
  99. data/spec/sms77/validate_for_voice_spec.rb +19 -19
  100. data/spec/sms77/voice_spec.rb +51 -51
  101. data/spec/sms77_spec.rb +9 -7
  102. data/spec/spec_helper.rb +53 -53
  103. metadata +75 -16
@@ -0,0 +1,449 @@
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
+ Class: Sms77::Resources::Contacts
8
+
9
+ &mdash; Documentation by YARD 0.9.27
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 = "Sms77::Resources::Contacts";
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 (C)</a> &raquo;
40
+ <span class='title'><span class='object_link'><a href="../../Sms77.html" title="Sms77 (module)">Sms77</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Resources.html" title="Sms77::Resources (module)">Resources</a></span></span>
41
+ &raquo;
42
+ <span class="title">Contacts</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>Class: Sms77::Resources::Contacts
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+ <dl>
70
+ <dt>Inherits:</dt>
71
+ <dd>
72
+ <span class="inheritName"><span class='object_link'><a href="../Resource.html" title="Sms77::Resource (class)">Sms77::Resource</a></span></span>
73
+
74
+ <ul class="fullTree">
75
+ <li>Object</li>
76
+
77
+ <li class="next"><span class='object_link'><a href="../Resource.html" title="Sms77::Resource (class)">Sms77::Resource</a></span></li>
78
+
79
+ <li class="next">Sms77::Resources::Contacts</li>
80
+
81
+ </ul>
82
+ <a href="#" class="inheritanceTree">show all</a>
83
+
84
+ </dd>
85
+ </dl>
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+ <dl>
98
+ <dt>Defined in:</dt>
99
+ <dd>lib/sms77/resources/contacts.rb</dd>
100
+ </dl>
101
+
102
+ </div>
103
+
104
+
105
+
106
+
107
+ <h2>Constant Summary</h2>
108
+
109
+ <h3 class="inherited">Constants inherited
110
+ from <span class='object_link'><a href="../Resource.html" title="Sms77::Resource (class)">Sms77::Resource</a></span></h3>
111
+ <p class="inherited"><span class='object_link'><a href="../Resource.html#BASE_PATH-constant" title="Sms77::Resource::BASE_PATH (constant)">Sms77::Resource::BASE_PATH</a></span></p>
112
+
113
+
114
+
115
+
116
+ <h2>Instance Attribute Summary</h2>
117
+
118
+ <h3 class="inherited">Attributes inherited from <span class='object_link'><a href="../Resource.html" title="Sms77::Resource (class)">Sms77::Resource</a></span></h3>
119
+ <p class="inherited"><span class='object_link'><a href="../Resource.html#api_key-instance_method" title="Sms77::Resource#api_key (method)">#api_key</a></span>, <span class='object_link'><a href="../Resource.html#builder-instance_method" title="Sms77::Resource#builder (method)">#builder</a></span>, <span class='object_link'><a href="../Resource.html#conn-instance_method" title="Sms77::Resource#conn (method)">#conn</a></span>, <span class='object_link'><a href="../Resource.html#endpoint-instance_method" title="Sms77::Resource#endpoint (method)">#endpoint</a></span>, <span class='object_link'><a href="../Resource.html#http_methods-instance_method" title="Sms77::Resource#http_methods (method)">#http_methods</a></span>, <span class='object_link'><a href="../Resource.html#request_methods-instance_method" title="Sms77::Resource#request_methods (method)">#request_methods</a></span>, <span class='object_link'><a href="../Resource.html#sent_with-instance_method" title="Sms77::Resource#sent_with (method)">#sent_with</a></span></p>
120
+
121
+
122
+
123
+ <h2>
124
+ Instance Method Summary
125
+ <small><a href="#" class="summary_toggle">collapse</a></small>
126
+ </h2>
127
+
128
+ <ul class="summary">
129
+
130
+ <li class="public ">
131
+ <span class="summary_signature">
132
+
133
+ <a href="#delete-instance_method" title="#delete (instance method)">#<strong>delete</strong>(params) &#x21d2; String, Hash </a>
134
+
135
+
136
+
137
+ </span>
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+ <span class="summary_desc"><div class='inline'>
148
+ <p>Delete an account with given ID read more: <a href="https://www.sms77.io/en/docs/gateway/http-api/contacts/#delete-contacts">www.sms77.io/en/docs/gateway/http-api/contacts/#delete-contacts</a>.</p>
149
+ </div></span>
150
+
151
+ </li>
152
+
153
+
154
+ <li class="public ">
155
+ <span class="summary_signature">
156
+
157
+ <a href="#read-instance_method" title="#read (instance method)">#<strong>read</strong>(params = {}) &#x21d2; String, Hash </a>
158
+
159
+
160
+
161
+ </span>
162
+
163
+
164
+
165
+
166
+
167
+
168
+
169
+
170
+
171
+ <span class="summary_desc"><div class='inline'>
172
+ <p>Retrieve contacts associated with the API key read more: <a href="https://www.sms77.io/en/docs/gateway/http-api/contacts/#read-contacts">www.sms77.io/en/docs/gateway/http-api/contacts/#read-contacts</a>.</p>
173
+ </div></span>
174
+
175
+ </li>
176
+
177
+
178
+ <li class="public ">
179
+ <span class="summary_signature">
180
+
181
+ <a href="#write-instance_method" title="#write (instance method)">#<strong>write</strong>(params) &#x21d2; String, Hash </a>
182
+
183
+
184
+
185
+ </span>
186
+
187
+
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+ <span class="summary_desc"><div class='inline'>
196
+ <p>Create or update a contact read more: <a href="https://www.sms77.io/en/docs/gateway/http-api/contacts/#create-and-edit-contacts">www.sms77.io/en/docs/gateway/http-api/contacts/#create-and-edit-contacts</a>.</p>
197
+ </div></span>
198
+
199
+ </li>
200
+
201
+
202
+ </ul>
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+
212
+
213
+
214
+ <h3 class="inherited">Methods inherited from <span class='object_link'><a href="../Resource.html" title="Sms77::Resource (class)">Sms77::Resource</a></span></h3>
215
+ <p class="inherited"><span class='object_link'><a href="../Resource.html#get_endpoint-class_method" title="Sms77::Resource.get_endpoint (method)">get_endpoint</a></span>, <span class='object_link'><a href="../Resource.html#get_http_methods-class_method" title="Sms77::Resource.get_http_methods (method)">get_http_methods</a></span>, <span class='object_link'><a href="../Resource.html#initialize-instance_method" title="Sms77::Resource#initialize (method)">#initialize</a></span></p>
216
+ <div id="constructor_details" class="method_details_list">
217
+ <h2>Constructor Details</h2>
218
+
219
+ <p class="notice">This class inherits a constructor from <span class='object_link'><a href="../Resource.html#initialize-instance_method" title="Sms77::Resource#initialize (method)">Sms77::Resource</a></span></p>
220
+
221
+ </div>
222
+
223
+
224
+ <div id="instance_method_details" class="method_details_list">
225
+ <h2>Instance Method Details</h2>
226
+
227
+
228
+ <div class="method_details first">
229
+ <h3 class="signature first" id="delete-instance_method">
230
+
231
+ #<strong>delete</strong>(params) &#x21d2; <tt>String</tt>, <tt>Hash</tt>
232
+
233
+
234
+
235
+
236
+
237
+ </h3><div class="docstring">
238
+ <div class="discussion">
239
+
240
+ <p>Delete an account with given ID read more: <a href="https://www.sms77.io/en/docs/gateway/http-api/contacts/#delete-contacts">www.sms77.io/en/docs/gateway/http-api/contacts/#delete-contacts</a></p>
241
+
242
+
243
+ </div>
244
+ </div>
245
+ <div class="tags">
246
+ <p class="tag_title">Parameters:</p>
247
+ <ul class="param">
248
+
249
+ <li>
250
+
251
+ <span class='name'>params</span>
252
+
253
+
254
+ <span class='type'>(<tt>Hash</tt>)</span>
255
+
256
+
257
+
258
+ </li>
259
+
260
+ </ul>
261
+
262
+ <p class="tag_title">Returns:</p>
263
+ <ul class="return">
264
+
265
+ <li>
266
+
267
+
268
+ <span class='type'>(<tt>String</tt>, <tt>Hash</tt>)</span>
269
+
270
+
271
+
272
+ </li>
273
+
274
+ </ul>
275
+
276
+ </div><table class="source_code">
277
+ <tr>
278
+ <td>
279
+ <pre class="lines">
280
+
281
+
282
+ 27
283
+ 28
284
+ 29</pre>
285
+ </td>
286
+ <td>
287
+ <pre class="code"><span class="info file"># File 'lib/sms77/resources/contacts.rb', line 27</span>
288
+
289
+ <span class='kw'>def</span> <span class='id identifier rubyid_delete'>delete</span><span class='lparen'>(</span><span class='id identifier rubyid_params'>params</span><span class='rparen'>)</span>
290
+ <span class='id identifier rubyid_request'>request</span><span class='lparen'>(</span><span class='lbrace'>{</span><span class='rbrace'>}</span><span class='comma'>,</span> <span class='id identifier rubyid_params'>params</span><span class='period'>.</span><span class='id identifier rubyid_merge'>merge</span><span class='lparen'>(</span><span class='lbrace'>{</span> <span class='symbol'>:action</span> <span class='op'>=&gt;</span> <span class='const'><span class='object_link'><a href="../../Sms77.html" title="Sms77 (module)">Sms77</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../Contacts.html" title="Sms77::Contacts (module)">Contacts</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../Contacts/Action.html" title="Sms77::Contacts::Action (module)">Action</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../Contacts/Action.html#DEL-constant" title="Sms77::Contacts::Action::DEL (constant)">DEL</a></span></span> <span class='rbrace'>}</span><span class='rparen'>)</span><span class='rparen'>)</span>
291
+ <span class='kw'>end</span></pre>
292
+ </td>
293
+ </tr>
294
+ </table>
295
+ </div>
296
+
297
+ <div class="method_details ">
298
+ <h3 class="signature " id="read-instance_method">
299
+
300
+ #<strong>read</strong>(params = {}) &#x21d2; <tt>String</tt>, <tt>Hash</tt>
301
+
302
+
303
+
304
+
305
+
306
+ </h3><div class="docstring">
307
+ <div class="discussion">
308
+
309
+ <p>Retrieve contacts associated with the API key read more: <a href="https://www.sms77.io/en/docs/gateway/http-api/contacts/#read-contacts">www.sms77.io/en/docs/gateway/http-api/contacts/#read-contacts</a></p>
310
+
311
+
312
+ </div>
313
+ </div>
314
+ <div class="tags">
315
+ <p class="tag_title">Parameters:</p>
316
+ <ul class="param">
317
+
318
+ <li>
319
+
320
+ <span class='name'>params</span>
321
+
322
+
323
+ <span class='type'>(<tt>Hash</tt>)</span>
324
+
325
+
326
+ <em class="default">(defaults to: <tt>{}</tt>)</em>
327
+
328
+
329
+ </li>
330
+
331
+ </ul>
332
+
333
+ <p class="tag_title">Returns:</p>
334
+ <ul class="return">
335
+
336
+ <li>
337
+
338
+
339
+ <span class='type'>(<tt>String</tt>, <tt>Hash</tt>)</span>
340
+
341
+
342
+
343
+ </li>
344
+
345
+ </ul>
346
+
347
+ </div><table class="source_code">
348
+ <tr>
349
+ <td>
350
+ <pre class="lines">
351
+
352
+
353
+ 19
354
+ 20
355
+ 21</pre>
356
+ </td>
357
+ <td>
358
+ <pre class="code"><span class="info file"># File 'lib/sms77/resources/contacts.rb', line 19</span>
359
+
360
+ <span class='kw'>def</span> <span class='id identifier rubyid_read'>read</span><span class='lparen'>(</span><span class='id identifier rubyid_params'>params</span> <span class='op'>=</span> <span class='lbrace'>{</span><span class='rbrace'>}</span><span class='rparen'>)</span>
361
+ <span class='id identifier rubyid_request'>request</span><span class='lparen'>(</span><span class='id identifier rubyid_params'>params</span><span class='period'>.</span><span class='id identifier rubyid_merge'>merge</span><span class='lparen'>(</span><span class='lbrace'>{</span> <span class='symbol'>:action</span> <span class='op'>=&gt;</span> <span class='const'><span class='object_link'><a href="../../Sms77.html" title="Sms77 (module)">Sms77</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../Contacts.html" title="Sms77::Contacts (module)">Contacts</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../Contacts/Action.html" title="Sms77::Contacts::Action (module)">Action</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../Contacts/Action.html#READ-constant" title="Sms77::Contacts::Action::READ (constant)">READ</a></span></span> <span class='rbrace'>}</span><span class='rparen'>)</span><span class='rparen'>)</span>
362
+ <span class='kw'>end</span></pre>
363
+ </td>
364
+ </tr>
365
+ </table>
366
+ </div>
367
+
368
+ <div class="method_details ">
369
+ <h3 class="signature " id="write-instance_method">
370
+
371
+ #<strong>write</strong>(params) &#x21d2; <tt>String</tt>, <tt>Hash</tt>
372
+
373
+
374
+
375
+
376
+
377
+ </h3><div class="docstring">
378
+ <div class="discussion">
379
+
380
+ <p>Create or update a contact read more: <a href="https://www.sms77.io/en/docs/gateway/http-api/contacts/#create-and-edit-contacts">www.sms77.io/en/docs/gateway/http-api/contacts/#create-and-edit-contacts</a></p>
381
+
382
+
383
+ </div>
384
+ </div>
385
+ <div class="tags">
386
+ <p class="tag_title">Parameters:</p>
387
+ <ul class="param">
388
+
389
+ <li>
390
+
391
+ <span class='name'>params</span>
392
+
393
+
394
+ <span class='type'>(<tt>Hash</tt>)</span>
395
+
396
+
397
+
398
+ </li>
399
+
400
+ </ul>
401
+
402
+ <p class="tag_title">Returns:</p>
403
+ <ul class="return">
404
+
405
+ <li>
406
+
407
+
408
+ <span class='type'>(<tt>String</tt>, <tt>Hash</tt>)</span>
409
+
410
+
411
+
412
+ </li>
413
+
414
+ </ul>
415
+
416
+ </div><table class="source_code">
417
+ <tr>
418
+ <td>
419
+ <pre class="lines">
420
+
421
+
422
+ 35
423
+ 36
424
+ 37</pre>
425
+ </td>
426
+ <td>
427
+ <pre class="code"><span class="info file"># File 'lib/sms77/resources/contacts.rb', line 35</span>
428
+
429
+ <span class='kw'>def</span> <span class='id identifier rubyid_write'>write</span><span class='lparen'>(</span><span class='id identifier rubyid_params'>params</span><span class='rparen'>)</span>
430
+ <span class='id identifier rubyid_request'>request</span><span class='lparen'>(</span><span class='lbrace'>{</span><span class='rbrace'>}</span><span class='comma'>,</span> <span class='id identifier rubyid_params'>params</span><span class='period'>.</span><span class='id identifier rubyid_merge'>merge</span><span class='lparen'>(</span><span class='lbrace'>{</span> <span class='symbol'>:action</span> <span class='op'>=&gt;</span> <span class='const'><span class='object_link'><a href="../../Sms77.html" title="Sms77 (module)">Sms77</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../Contacts.html" title="Sms77::Contacts (module)">Contacts</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../Contacts/Action.html" title="Sms77::Contacts::Action (module)">Action</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../Contacts/Action.html#WRITE-constant" title="Sms77::Contacts::Action::WRITE (constant)">WRITE</a></span></span> <span class='rbrace'>}</span><span class='rparen'>)</span><span class='rparen'>)</span>
431
+ <span class='kw'>end</span></pre>
432
+ </td>
433
+ </tr>
434
+ </table>
435
+ </div>
436
+
437
+ </div>
438
+
439
+ </div>
440
+
441
+ <div id="footer">
442
+ Generated on Wed Mar 30 13:55:36 2022 by
443
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
444
+ 0.9.27 (ruby-2.7.4).
445
+ </div>
446
+
447
+ </div>
448
+ </body>
449
+ </html>