yamlint 0.1.0 → 1.0.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.
- checksums.yaml +4 -4
- data/.rubocop.yml +31 -9
- data/.serena/.gitignore +1 -0
- data/.serena/memories/project_overview.md +25 -0
- data/.serena/memories/style_and_conventions.md +7 -0
- data/.serena/memories/suggested_commands.md +17 -0
- data/.serena/memories/task_completion.md +5 -0
- data/.serena/project.yml +89 -0
- data/CHANGELOG.md +6 -2
- data/Gemfile +9 -7
- data/LICENSE.txt +1 -1
- data/README.md +155 -17
- data/Rakefile +10 -3
- data/docs/Yamlint/Cli.html +403 -0
- data/docs/Yamlint/Config.html +1034 -0
- data/docs/Yamlint/Formatter.html +433 -0
- data/docs/Yamlint/Linter.html +423 -0
- data/docs/Yamlint/Models/LintContext.html +993 -0
- data/docs/Yamlint/Models/Problem.html +951 -0
- data/docs/Yamlint/Models/Token.html +713 -0
- data/docs/Yamlint/Models.html +117 -0
- data/docs/Yamlint/Output/Base.html +290 -0
- data/docs/Yamlint/Output/Colored.html +293 -0
- data/docs/Yamlint/Output/Github.html +260 -0
- data/docs/Yamlint/Output/Parsable.html +258 -0
- data/docs/Yamlint/Output/Standard.html +270 -0
- data/docs/Yamlint/Output.html +208 -0
- data/docs/Yamlint/Parser/Comment.html +795 -0
- data/docs/Yamlint/Parser/CommentExtractor.html +287 -0
- data/docs/Yamlint/Parser/LineParser.html +423 -0
- data/docs/Yamlint/Parser/TokenParser/Handler.html +910 -0
- data/docs/Yamlint/Parser/TokenParser.html +291 -0
- data/docs/Yamlint/Parser.html +117 -0
- data/docs/Yamlint/Presets.html +266 -0
- data/docs/Yamlint/Rules/Anchors/AnchorHandler.html +678 -0
- data/docs/Yamlint/Rules/Anchors.html +314 -0
- data/docs/Yamlint/Rules/Base.html +968 -0
- data/docs/Yamlint/Rules/Braces.html +335 -0
- data/docs/Yamlint/Rules/Brackets.html +335 -0
- data/docs/Yamlint/Rules/Colons.html +313 -0
- data/docs/Yamlint/Rules/Commas.html +313 -0
- data/docs/Yamlint/Rules/CommentRule.html +298 -0
- data/docs/Yamlint/Rules/Comments.html +317 -0
- data/docs/Yamlint/Rules/CommentsIndentation.html +328 -0
- data/docs/Yamlint/Rules/DocumentEnd.html +332 -0
- data/docs/Yamlint/Rules/DocumentStart.html +332 -0
- data/docs/Yamlint/Rules/EmptyLines.html +300 -0
- data/docs/Yamlint/Rules/EmptyValues.html +273 -0
- data/docs/Yamlint/Rules/FloatValues.html +383 -0
- data/docs/Yamlint/Rules/Hyphens.html +337 -0
- data/docs/Yamlint/Rules/Indentation.html +329 -0
- data/docs/Yamlint/Rules/KeyDuplicates/DuplicateKeyHandler.html +716 -0
- data/docs/Yamlint/Rules/KeyDuplicates.html +258 -0
- data/docs/Yamlint/Rules/KeyOrdering/KeyOrderHandler.html +694 -0
- data/docs/Yamlint/Rules/KeyOrdering.html +258 -0
- data/docs/Yamlint/Rules/LineLength.html +251 -0
- data/docs/Yamlint/Rules/LineRule.html +304 -0
- data/docs/Yamlint/Rules/NewLineAtEndOfFile.html +308 -0
- data/docs/Yamlint/Rules/NewLines.html +310 -0
- data/docs/Yamlint/Rules/OctalValues.html +270 -0
- data/docs/Yamlint/Rules/QuotedStrings.html +381 -0
- data/docs/Yamlint/Rules/Registry.html +492 -0
- data/docs/Yamlint/Rules/TokenRule.html +298 -0
- data/docs/Yamlint/Rules/TrailingSpaces.html +321 -0
- data/docs/Yamlint/Rules/Truthy.html +288 -0
- data/docs/Yamlint/Rules.html +190 -0
- data/docs/Yamlint/Runner.html +551 -0
- data/docs/Yamlint.html +135 -0
- data/docs/_index.html +643 -0
- data/docs/class_list.html +54 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +490 -0
- data/docs/file.README.html +276 -0
- data/docs/file_list.html +59 -0
- data/docs/frames.html +22 -0
- data/docs/index.html +276 -0
- data/docs/js/app.js +395 -0
- data/docs/js/full_list.js +244 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +1582 -0
- data/docs/top-level-namespace.html +110 -0
- data/exe/yamlint +7 -0
- data/lib/yamlint/cli.rb +162 -0
- data/lib/yamlint/config.rb +113 -0
- data/lib/yamlint/formatter.rb +140 -0
- data/lib/yamlint/linter.rb +130 -0
- data/lib/yamlint/models/lint_context.rb +43 -0
- data/lib/yamlint/models/problem.rb +44 -0
- data/lib/yamlint/models/token.rb +22 -0
- data/lib/yamlint/models.rb +9 -0
- data/lib/yamlint/output/base.rb +15 -0
- data/lib/yamlint/output/colored.rb +54 -0
- data/lib/yamlint/output/github.rb +20 -0
- data/lib/yamlint/output/parsable.rb +19 -0
- data/lib/yamlint/output/standard.rb +25 -0
- data/lib/yamlint/output.rb +26 -0
- data/lib/yamlint/parser/comment_extractor.rb +78 -0
- data/lib/yamlint/parser/line_parser.rb +30 -0
- data/lib/yamlint/parser/token_parser.rb +92 -0
- data/lib/yamlint/parser.rb +10 -0
- data/lib/yamlint/presets/default.rb +35 -0
- data/lib/yamlint/presets/relaxed.rb +34 -0
- data/lib/yamlint/presets.rb +19 -0
- data/lib/yamlint/rules/anchors.rb +133 -0
- data/lib/yamlint/rules/base.rb +102 -0
- data/lib/yamlint/rules/braces.rb +105 -0
- data/lib/yamlint/rules/brackets.rb +105 -0
- data/lib/yamlint/rules/colons.rb +73 -0
- data/lib/yamlint/rules/commas.rb +85 -0
- data/lib/yamlint/rules/comments.rb +77 -0
- data/lib/yamlint/rules/comments_indentation.rb +66 -0
- data/lib/yamlint/rules/document_end.rb +45 -0
- data/lib/yamlint/rules/document_start.rb +45 -0
- data/lib/yamlint/rules/empty_lines.rb +107 -0
- data/lib/yamlint/rules/empty_values.rb +43 -0
- data/lib/yamlint/rules/float_values.rb +67 -0
- data/lib/yamlint/rules/hyphens.rb +42 -0
- data/lib/yamlint/rules/indentation.rb +39 -0
- data/lib/yamlint/rules/key_duplicates.rb +127 -0
- data/lib/yamlint/rules/key_ordering.rb +126 -0
- data/lib/yamlint/rules/line_length.rb +57 -0
- data/lib/yamlint/rules/new_line_at_end_of_file.rb +31 -0
- data/lib/yamlint/rules/new_lines.rb +59 -0
- data/lib/yamlint/rules/octal_values.rb +62 -0
- data/lib/yamlint/rules/quoted_strings.rb +73 -0
- data/lib/yamlint/rules/registry.rb +48 -0
- data/lib/yamlint/rules/trailing_spaces.rb +31 -0
- data/lib/yamlint/rules/truthy.rb +48 -0
- data/lib/yamlint/rules.rb +41 -0
- data/lib/yamlint/runner.rb +80 -0
- data/lib/yamlint/version.rb +1 -1
- data/lib/yamlint.rb +11 -3
- metadata +131 -11
- data/CODE_OF_CONDUCT.md +0 -84
- data/sig/yamlint.rbs +0 -4
|
@@ -0,0 +1,993 @@
|
|
|
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: Yamlint::Models::LintContext
|
|
8
|
+
|
|
9
|
+
— Documentation by YARD 0.9.38
|
|
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 = "Yamlint::Models::LintContext";
|
|
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 (L)</a> »
|
|
40
|
+
<span class='title'><span class='object_link'><a href="../../Yamlint.html" title="Yamlint (module)">Yamlint</a></span></span> » <span class='title'><span class='object_link'><a href="../Models.html" title="Yamlint::Models (module)">Models</a></span></span>
|
|
41
|
+
»
|
|
42
|
+
<span class="title">LintContext</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: Yamlint::Models::LintContext
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
</h1>
|
|
67
|
+
<div class="box_info">
|
|
68
|
+
|
|
69
|
+
<dl>
|
|
70
|
+
<dt>Inherits:</dt>
|
|
71
|
+
<dd>
|
|
72
|
+
<span class="inheritName">Object</span>
|
|
73
|
+
|
|
74
|
+
<ul class="fullTree">
|
|
75
|
+
<li>Object</li>
|
|
76
|
+
|
|
77
|
+
<li class="next">Yamlint::Models::LintContext</li>
|
|
78
|
+
|
|
79
|
+
</ul>
|
|
80
|
+
<a href="#" class="inheritanceTree">show all</a>
|
|
81
|
+
|
|
82
|
+
</dd>
|
|
83
|
+
</dl>
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
<dl>
|
|
96
|
+
<dt>Defined in:</dt>
|
|
97
|
+
<dd>lib/yamlint/models/lint_context.rb</dd>
|
|
98
|
+
</dl>
|
|
99
|
+
|
|
100
|
+
</div>
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
<h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collapse</a></small></h2>
|
|
107
|
+
<ul class="summary">
|
|
108
|
+
|
|
109
|
+
<li class="public ">
|
|
110
|
+
<span class="summary_signature">
|
|
111
|
+
|
|
112
|
+
<a href="#comments-instance_method" title="#comments (instance method)">#<strong>comments</strong> ⇒ Object </a>
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
</span>
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
<span class="note title readonly">readonly</span>
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
<span class="summary_desc"><div class='inline'>
|
|
132
|
+
<p>Returns the value of attribute comments.</p>
|
|
133
|
+
</div></span>
|
|
134
|
+
|
|
135
|
+
</li>
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
<li class="public ">
|
|
139
|
+
<span class="summary_signature">
|
|
140
|
+
|
|
141
|
+
<a href="#content-instance_method" title="#content (instance method)">#<strong>content</strong> ⇒ Object </a>
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
</span>
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
<span class="note title readonly">readonly</span>
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
<span class="summary_desc"><div class='inline'>
|
|
161
|
+
<p>Returns the value of attribute content.</p>
|
|
162
|
+
</div></span>
|
|
163
|
+
|
|
164
|
+
</li>
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
<li class="public ">
|
|
168
|
+
<span class="summary_signature">
|
|
169
|
+
|
|
170
|
+
<a href="#filepath-instance_method" title="#filepath (instance method)">#<strong>filepath</strong> ⇒ Object </a>
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
</span>
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
<span class="note title readonly">readonly</span>
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
<span class="summary_desc"><div class='inline'>
|
|
190
|
+
<p>Returns the value of attribute filepath.</p>
|
|
191
|
+
</div></span>
|
|
192
|
+
|
|
193
|
+
</li>
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
<li class="public ">
|
|
197
|
+
<span class="summary_signature">
|
|
198
|
+
|
|
199
|
+
<a href="#lines-instance_method" title="#lines (instance method)">#<strong>lines</strong> ⇒ Object </a>
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
</span>
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
<span class="note title readonly">readonly</span>
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
<span class="summary_desc"><div class='inline'>
|
|
219
|
+
<p>Returns the value of attribute lines.</p>
|
|
220
|
+
</div></span>
|
|
221
|
+
|
|
222
|
+
</li>
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
<li class="public ">
|
|
226
|
+
<span class="summary_signature">
|
|
227
|
+
|
|
228
|
+
<a href="#problems-instance_method" title="#problems (instance method)">#<strong>problems</strong> ⇒ Object </a>
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
</span>
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
<span class="summary_desc"><div class='inline'>
|
|
246
|
+
<p>Returns the value of attribute problems.</p>
|
|
247
|
+
</div></span>
|
|
248
|
+
|
|
249
|
+
</li>
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
<li class="public ">
|
|
253
|
+
<span class="summary_signature">
|
|
254
|
+
|
|
255
|
+
<a href="#tokens-instance_method" title="#tokens (instance method)">#<strong>tokens</strong> ⇒ Object </a>
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
</span>
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
<span class="note title readonly">readonly</span>
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
<span class="summary_desc"><div class='inline'>
|
|
275
|
+
<p>Returns the value of attribute tokens.</p>
|
|
276
|
+
</div></span>
|
|
277
|
+
|
|
278
|
+
</li>
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
</ul>
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
<h2>
|
|
288
|
+
Instance Method Summary
|
|
289
|
+
<small><a href="#" class="summary_toggle">collapse</a></small>
|
|
290
|
+
</h2>
|
|
291
|
+
|
|
292
|
+
<ul class="summary">
|
|
293
|
+
|
|
294
|
+
<li class="public ">
|
|
295
|
+
<span class="summary_signature">
|
|
296
|
+
|
|
297
|
+
<a href="#add_comment-instance_method" title="#add_comment (instance method)">#<strong>add_comment</strong>(comment) ⇒ Object </a>
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
</span>
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
312
|
+
|
|
313
|
+
</li>
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
<li class="public ">
|
|
317
|
+
<span class="summary_signature">
|
|
318
|
+
|
|
319
|
+
<a href="#add_problem-instance_method" title="#add_problem (instance method)">#<strong>add_problem</strong>(problem) ⇒ Object </a>
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
</span>
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
334
|
+
|
|
335
|
+
</li>
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
<li class="public ">
|
|
339
|
+
<span class="summary_signature">
|
|
340
|
+
|
|
341
|
+
<a href="#add_token-instance_method" title="#add_token (instance method)">#<strong>add_token</strong>(token) ⇒ Object </a>
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
</span>
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
356
|
+
|
|
357
|
+
</li>
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
<li class="public ">
|
|
361
|
+
<span class="summary_signature">
|
|
362
|
+
|
|
363
|
+
<a href="#empty%3F-instance_method" title="#empty? (instance method)">#<strong>empty?</strong> ⇒ Boolean </a>
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
</span>
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
378
|
+
|
|
379
|
+
</li>
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
<li class="public ">
|
|
383
|
+
<span class="summary_signature">
|
|
384
|
+
|
|
385
|
+
<a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(filepath:, content:) ⇒ LintContext </a>
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
</span>
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
<span class="note title constructor">constructor</span>
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
<span class="summary_desc"><div class='inline'>
|
|
402
|
+
<p>A new instance of LintContext.</p>
|
|
403
|
+
</div></span>
|
|
404
|
+
|
|
405
|
+
</li>
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
<li class="public ">
|
|
409
|
+
<span class="summary_signature">
|
|
410
|
+
|
|
411
|
+
<a href="#line_at-instance_method" title="#line_at (instance method)">#<strong>line_at</strong>(line_number) ⇒ Object </a>
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
</span>
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
426
|
+
|
|
427
|
+
</li>
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
<li class="public ">
|
|
431
|
+
<span class="summary_signature">
|
|
432
|
+
|
|
433
|
+
<a href="#line_count-instance_method" title="#line_count (instance method)">#<strong>line_count</strong> ⇒ Object </a>
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
</span>
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
448
|
+
|
|
449
|
+
</li>
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
</ul>
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
<div id="constructor_details" class="method_details_list">
|
|
456
|
+
<h2>Constructor Details</h2>
|
|
457
|
+
|
|
458
|
+
<div class="method_details first">
|
|
459
|
+
<h3 class="signature first" id="initialize-instance_method">
|
|
460
|
+
|
|
461
|
+
#<strong>initialize</strong>(filepath:, content:) ⇒ <tt><span class='object_link'><a href="" title="Yamlint::Models::LintContext (class)">LintContext</a></span></tt>
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
</h3><div class="docstring">
|
|
468
|
+
<div class="discussion">
|
|
469
|
+
|
|
470
|
+
<p>Returns a new instance of LintContext.</p>
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
</div>
|
|
474
|
+
</div>
|
|
475
|
+
<div class="tags">
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
</div><table class="source_code">
|
|
479
|
+
<tr>
|
|
480
|
+
<td>
|
|
481
|
+
<pre class="lines">
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
9
|
|
485
|
+
10
|
|
486
|
+
11
|
|
487
|
+
12
|
|
488
|
+
13
|
|
489
|
+
14
|
|
490
|
+
15
|
|
491
|
+
16</pre>
|
|
492
|
+
</td>
|
|
493
|
+
<td>
|
|
494
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 9</span>
|
|
495
|
+
|
|
496
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='label'>filepath:</span><span class='comma'>,</span> <span class='label'>content:</span><span class='rparen'>)</span>
|
|
497
|
+
<span class='ivar'>@filepath</span> <span class='op'>=</span> <span class='id identifier rubyid_filepath'>filepath</span>
|
|
498
|
+
<span class='ivar'>@content</span> <span class='op'>=</span> <span class='id identifier rubyid_content'>content</span>
|
|
499
|
+
<span class='ivar'>@lines</span> <span class='op'>=</span> <span class='id identifier rubyid_content'>content</span><span class='period'>.</span><span class='id identifier rubyid_lines'>lines</span>
|
|
500
|
+
<span class='ivar'>@tokens</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span>
|
|
501
|
+
<span class='ivar'>@comments</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span>
|
|
502
|
+
<span class='ivar'>@problems</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span>
|
|
503
|
+
<span class='kw'>end</span></pre>
|
|
504
|
+
</td>
|
|
505
|
+
</tr>
|
|
506
|
+
</table>
|
|
507
|
+
</div>
|
|
508
|
+
|
|
509
|
+
</div>
|
|
510
|
+
|
|
511
|
+
<div id="instance_attr_details" class="attr_details">
|
|
512
|
+
<h2>Instance Attribute Details</h2>
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
<span id=""></span>
|
|
516
|
+
<div class="method_details first">
|
|
517
|
+
<h3 class="signature first" id="comments-instance_method">
|
|
518
|
+
|
|
519
|
+
#<strong>comments</strong> ⇒ <tt>Object</tt> <span class="extras">(readonly)</span>
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
</h3><div class="docstring">
|
|
526
|
+
<div class="discussion">
|
|
527
|
+
|
|
528
|
+
<p>Returns the value of attribute comments.</p>
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
</div>
|
|
532
|
+
</div>
|
|
533
|
+
<div class="tags">
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
</div><table class="source_code">
|
|
537
|
+
<tr>
|
|
538
|
+
<td>
|
|
539
|
+
<pre class="lines">
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
6
|
|
543
|
+
7
|
|
544
|
+
8</pre>
|
|
545
|
+
</td>
|
|
546
|
+
<td>
|
|
547
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 6</span>
|
|
548
|
+
|
|
549
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_comments'>comments</span>
|
|
550
|
+
<span class='ivar'>@comments</span>
|
|
551
|
+
<span class='kw'>end</span></pre>
|
|
552
|
+
</td>
|
|
553
|
+
</tr>
|
|
554
|
+
</table>
|
|
555
|
+
</div>
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
<span id=""></span>
|
|
559
|
+
<div class="method_details ">
|
|
560
|
+
<h3 class="signature " id="content-instance_method">
|
|
561
|
+
|
|
562
|
+
#<strong>content</strong> ⇒ <tt>Object</tt> <span class="extras">(readonly)</span>
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
</h3><div class="docstring">
|
|
569
|
+
<div class="discussion">
|
|
570
|
+
|
|
571
|
+
<p>Returns the value of attribute content.</p>
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
</div>
|
|
575
|
+
</div>
|
|
576
|
+
<div class="tags">
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
</div><table class="source_code">
|
|
580
|
+
<tr>
|
|
581
|
+
<td>
|
|
582
|
+
<pre class="lines">
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
6
|
|
586
|
+
7
|
|
587
|
+
8</pre>
|
|
588
|
+
</td>
|
|
589
|
+
<td>
|
|
590
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 6</span>
|
|
591
|
+
|
|
592
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_content'>content</span>
|
|
593
|
+
<span class='ivar'>@content</span>
|
|
594
|
+
<span class='kw'>end</span></pre>
|
|
595
|
+
</td>
|
|
596
|
+
</tr>
|
|
597
|
+
</table>
|
|
598
|
+
</div>
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
<span id=""></span>
|
|
602
|
+
<div class="method_details ">
|
|
603
|
+
<h3 class="signature " id="filepath-instance_method">
|
|
604
|
+
|
|
605
|
+
#<strong>filepath</strong> ⇒ <tt>Object</tt> <span class="extras">(readonly)</span>
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
</h3><div class="docstring">
|
|
612
|
+
<div class="discussion">
|
|
613
|
+
|
|
614
|
+
<p>Returns the value of attribute filepath.</p>
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
</div>
|
|
618
|
+
</div>
|
|
619
|
+
<div class="tags">
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
</div><table class="source_code">
|
|
623
|
+
<tr>
|
|
624
|
+
<td>
|
|
625
|
+
<pre class="lines">
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
6
|
|
629
|
+
7
|
|
630
|
+
8</pre>
|
|
631
|
+
</td>
|
|
632
|
+
<td>
|
|
633
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 6</span>
|
|
634
|
+
|
|
635
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_filepath'>filepath</span>
|
|
636
|
+
<span class='ivar'>@filepath</span>
|
|
637
|
+
<span class='kw'>end</span></pre>
|
|
638
|
+
</td>
|
|
639
|
+
</tr>
|
|
640
|
+
</table>
|
|
641
|
+
</div>
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
<span id=""></span>
|
|
645
|
+
<div class="method_details ">
|
|
646
|
+
<h3 class="signature " id="lines-instance_method">
|
|
647
|
+
|
|
648
|
+
#<strong>lines</strong> ⇒ <tt>Object</tt> <span class="extras">(readonly)</span>
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
</h3><div class="docstring">
|
|
655
|
+
<div class="discussion">
|
|
656
|
+
|
|
657
|
+
<p>Returns the value of attribute lines.</p>
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
</div>
|
|
661
|
+
</div>
|
|
662
|
+
<div class="tags">
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
</div><table class="source_code">
|
|
666
|
+
<tr>
|
|
667
|
+
<td>
|
|
668
|
+
<pre class="lines">
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
6
|
|
672
|
+
7
|
|
673
|
+
8</pre>
|
|
674
|
+
</td>
|
|
675
|
+
<td>
|
|
676
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 6</span>
|
|
677
|
+
|
|
678
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_lines'>lines</span>
|
|
679
|
+
<span class='ivar'>@lines</span>
|
|
680
|
+
<span class='kw'>end</span></pre>
|
|
681
|
+
</td>
|
|
682
|
+
</tr>
|
|
683
|
+
</table>
|
|
684
|
+
</div>
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
<span id="problems=-instance_method"></span>
|
|
688
|
+
<div class="method_details ">
|
|
689
|
+
<h3 class="signature " id="problems-instance_method">
|
|
690
|
+
|
|
691
|
+
#<strong>problems</strong> ⇒ <tt>Object</tt>
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
</h3><div class="docstring">
|
|
698
|
+
<div class="discussion">
|
|
699
|
+
|
|
700
|
+
<p>Returns the value of attribute problems.</p>
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
</div>
|
|
704
|
+
</div>
|
|
705
|
+
<div class="tags">
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
</div><table class="source_code">
|
|
709
|
+
<tr>
|
|
710
|
+
<td>
|
|
711
|
+
<pre class="lines">
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
7
|
|
715
|
+
8
|
|
716
|
+
9</pre>
|
|
717
|
+
</td>
|
|
718
|
+
<td>
|
|
719
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 7</span>
|
|
720
|
+
|
|
721
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_problems'>problems</span>
|
|
722
|
+
<span class='ivar'>@problems</span>
|
|
723
|
+
<span class='kw'>end</span></pre>
|
|
724
|
+
</td>
|
|
725
|
+
</tr>
|
|
726
|
+
</table>
|
|
727
|
+
</div>
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
<span id=""></span>
|
|
731
|
+
<div class="method_details ">
|
|
732
|
+
<h3 class="signature " id="tokens-instance_method">
|
|
733
|
+
|
|
734
|
+
#<strong>tokens</strong> ⇒ <tt>Object</tt> <span class="extras">(readonly)</span>
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
</h3><div class="docstring">
|
|
741
|
+
<div class="discussion">
|
|
742
|
+
|
|
743
|
+
<p>Returns the value of attribute tokens.</p>
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
</div>
|
|
747
|
+
</div>
|
|
748
|
+
<div class="tags">
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
</div><table class="source_code">
|
|
752
|
+
<tr>
|
|
753
|
+
<td>
|
|
754
|
+
<pre class="lines">
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
6
|
|
758
|
+
7
|
|
759
|
+
8</pre>
|
|
760
|
+
</td>
|
|
761
|
+
<td>
|
|
762
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 6</span>
|
|
763
|
+
|
|
764
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_tokens'>tokens</span>
|
|
765
|
+
<span class='ivar'>@tokens</span>
|
|
766
|
+
<span class='kw'>end</span></pre>
|
|
767
|
+
</td>
|
|
768
|
+
</tr>
|
|
769
|
+
</table>
|
|
770
|
+
</div>
|
|
771
|
+
|
|
772
|
+
</div>
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
<div id="instance_method_details" class="method_details_list">
|
|
776
|
+
<h2>Instance Method Details</h2>
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
<div class="method_details first">
|
|
780
|
+
<h3 class="signature first" id="add_comment-instance_method">
|
|
781
|
+
|
|
782
|
+
#<strong>add_comment</strong>(comment) ⇒ <tt>Object</tt>
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
</h3><table class="source_code">
|
|
789
|
+
<tr>
|
|
790
|
+
<td>
|
|
791
|
+
<pre class="lines">
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
26
|
|
795
|
+
27
|
|
796
|
+
28</pre>
|
|
797
|
+
</td>
|
|
798
|
+
<td>
|
|
799
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 26</span>
|
|
800
|
+
|
|
801
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_add_comment'>add_comment</span><span class='lparen'>(</span><span class='id identifier rubyid_comment'>comment</span><span class='rparen'>)</span>
|
|
802
|
+
<span class='ivar'>@comments</span> <span class='op'><<</span> <span class='id identifier rubyid_comment'>comment</span>
|
|
803
|
+
<span class='kw'>end</span></pre>
|
|
804
|
+
</td>
|
|
805
|
+
</tr>
|
|
806
|
+
</table>
|
|
807
|
+
</div>
|
|
808
|
+
|
|
809
|
+
<div class="method_details ">
|
|
810
|
+
<h3 class="signature " id="add_problem-instance_method">
|
|
811
|
+
|
|
812
|
+
#<strong>add_problem</strong>(problem) ⇒ <tt>Object</tt>
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
</h3><table class="source_code">
|
|
819
|
+
<tr>
|
|
820
|
+
<td>
|
|
821
|
+
<pre class="lines">
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
18
|
|
825
|
+
19
|
|
826
|
+
20</pre>
|
|
827
|
+
</td>
|
|
828
|
+
<td>
|
|
829
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 18</span>
|
|
830
|
+
|
|
831
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_add_problem'>add_problem</span><span class='lparen'>(</span><span class='id identifier rubyid_problem'>problem</span><span class='rparen'>)</span>
|
|
832
|
+
<span class='ivar'>@problems</span> <span class='op'><<</span> <span class='id identifier rubyid_problem'>problem</span>
|
|
833
|
+
<span class='kw'>end</span></pre>
|
|
834
|
+
</td>
|
|
835
|
+
</tr>
|
|
836
|
+
</table>
|
|
837
|
+
</div>
|
|
838
|
+
|
|
839
|
+
<div class="method_details ">
|
|
840
|
+
<h3 class="signature " id="add_token-instance_method">
|
|
841
|
+
|
|
842
|
+
#<strong>add_token</strong>(token) ⇒ <tt>Object</tt>
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
</h3><table class="source_code">
|
|
849
|
+
<tr>
|
|
850
|
+
<td>
|
|
851
|
+
<pre class="lines">
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
22
|
|
855
|
+
23
|
|
856
|
+
24</pre>
|
|
857
|
+
</td>
|
|
858
|
+
<td>
|
|
859
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 22</span>
|
|
860
|
+
|
|
861
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_add_token'>add_token</span><span class='lparen'>(</span><span class='id identifier rubyid_token'>token</span><span class='rparen'>)</span>
|
|
862
|
+
<span class='ivar'>@tokens</span> <span class='op'><<</span> <span class='id identifier rubyid_token'>token</span>
|
|
863
|
+
<span class='kw'>end</span></pre>
|
|
864
|
+
</td>
|
|
865
|
+
</tr>
|
|
866
|
+
</table>
|
|
867
|
+
</div>
|
|
868
|
+
|
|
869
|
+
<div class="method_details ">
|
|
870
|
+
<h3 class="signature " id="empty?-instance_method">
|
|
871
|
+
|
|
872
|
+
#<strong>empty?</strong> ⇒ <tt>Boolean</tt>
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
</h3><div class="docstring">
|
|
879
|
+
<div class="discussion">
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
</div>
|
|
883
|
+
</div>
|
|
884
|
+
<div class="tags">
|
|
885
|
+
|
|
886
|
+
<p class="tag_title">Returns:</p>
|
|
887
|
+
<ul class="return">
|
|
888
|
+
|
|
889
|
+
<li>
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
<span class='type'>(<tt>Boolean</tt>)</span>
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
</li>
|
|
897
|
+
|
|
898
|
+
</ul>
|
|
899
|
+
|
|
900
|
+
</div><table class="source_code">
|
|
901
|
+
<tr>
|
|
902
|
+
<td>
|
|
903
|
+
<pre class="lines">
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
38
|
|
907
|
+
39
|
|
908
|
+
40</pre>
|
|
909
|
+
</td>
|
|
910
|
+
<td>
|
|
911
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 38</span>
|
|
912
|
+
|
|
913
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_empty?'>empty?</span>
|
|
914
|
+
<span class='ivar'>@content</span><span class='period'>.</span><span class='id identifier rubyid_empty?'>empty?</span>
|
|
915
|
+
<span class='kw'>end</span></pre>
|
|
916
|
+
</td>
|
|
917
|
+
</tr>
|
|
918
|
+
</table>
|
|
919
|
+
</div>
|
|
920
|
+
|
|
921
|
+
<div class="method_details ">
|
|
922
|
+
<h3 class="signature " id="line_at-instance_method">
|
|
923
|
+
|
|
924
|
+
#<strong>line_at</strong>(line_number) ⇒ <tt>Object</tt>
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
</h3><table class="source_code">
|
|
931
|
+
<tr>
|
|
932
|
+
<td>
|
|
933
|
+
<pre class="lines">
|
|
934
|
+
|
|
935
|
+
|
|
936
|
+
34
|
|
937
|
+
35
|
|
938
|
+
36</pre>
|
|
939
|
+
</td>
|
|
940
|
+
<td>
|
|
941
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 34</span>
|
|
942
|
+
|
|
943
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_line_at'>line_at</span><span class='lparen'>(</span><span class='id identifier rubyid_line_number'>line_number</span><span class='rparen'>)</span>
|
|
944
|
+
<span class='ivar'>@lines</span><span class='lbracket'>[</span><span class='id identifier rubyid_line_number'>line_number</span> <span class='op'>-</span> <span class='int'>1</span><span class='rbracket'>]</span>
|
|
945
|
+
<span class='kw'>end</span></pre>
|
|
946
|
+
</td>
|
|
947
|
+
</tr>
|
|
948
|
+
</table>
|
|
949
|
+
</div>
|
|
950
|
+
|
|
951
|
+
<div class="method_details ">
|
|
952
|
+
<h3 class="signature " id="line_count-instance_method">
|
|
953
|
+
|
|
954
|
+
#<strong>line_count</strong> ⇒ <tt>Object</tt>
|
|
955
|
+
|
|
956
|
+
|
|
957
|
+
|
|
958
|
+
|
|
959
|
+
|
|
960
|
+
</h3><table class="source_code">
|
|
961
|
+
<tr>
|
|
962
|
+
<td>
|
|
963
|
+
<pre class="lines">
|
|
964
|
+
|
|
965
|
+
|
|
966
|
+
30
|
|
967
|
+
31
|
|
968
|
+
32</pre>
|
|
969
|
+
</td>
|
|
970
|
+
<td>
|
|
971
|
+
<pre class="code"><span class="info file"># File 'lib/yamlint/models/lint_context.rb', line 30</span>
|
|
972
|
+
|
|
973
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_line_count'>line_count</span>
|
|
974
|
+
<span class='ivar'>@lines</span><span class='period'>.</span><span class='id identifier rubyid_length'>length</span>
|
|
975
|
+
<span class='kw'>end</span></pre>
|
|
976
|
+
</td>
|
|
977
|
+
</tr>
|
|
978
|
+
</table>
|
|
979
|
+
</div>
|
|
980
|
+
|
|
981
|
+
</div>
|
|
982
|
+
|
|
983
|
+
</div>
|
|
984
|
+
|
|
985
|
+
<div id="footer">
|
|
986
|
+
Generated on Sun Jan 25 08:00:08 2026 by
|
|
987
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
988
|
+
0.9.38 (ruby-4.0.0).
|
|
989
|
+
</div>
|
|
990
|
+
|
|
991
|
+
</div>
|
|
992
|
+
</body>
|
|
993
|
+
</html>
|