expressir 2.3.2 → 2.3.4
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_todo.yml +11 -681
- data/Gemfile +0 -3
- data/lib/expressir/commands/changes_import_eengine.rb +0 -20
- data/lib/expressir/express/builder.rb +0 -8
- data/lib/expressir/express/parser.rb +0 -4
- data/lib/expressir/express/remark_attacher.rb +4 -4
- data/lib/expressir/model/declarations/schema.rb +12 -1
- data/lib/expressir/model/model_element.rb +0 -8
- data/lib/expressir/model/repository.rb +4 -0
- data/lib/expressir/version.rb +1 -1
- metadata +2 -3
- data/lib/expressir/transformer.rb +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e990830fa008a30ebb6b937e503030069e175b329ff44f3eebe212adaa5066b
|
|
4
|
+
data.tar.gz: 6f84bc382c6e49c6402298a5e1f6557343ad6864e7dfa5364bc52e4467fc6cf3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae27b6f9b65e7622db436d3658867ce76587884b215b0a6f74954740c0110ae957b8ed35c887a7ebeda0c91ea7db4b30bb23836da21730e5cba296a7b2bfc9dd
|
|
7
|
+
data.tar.gz: 362a01b5e21d36d050ec1049f626a44bb0e62cd2ced0cd74c5581faee4f9903313fe5aaefff20df5c2c814979df4bc806ef621b23cbdb9af71831128485cbc33
|
data/.rubocop_todo.yml
CHANGED
|
@@ -1,358 +1,26 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on 2026-
|
|
3
|
+
# on 2026-05-11 08:18:39 UTC using RuboCop version 1.86.0.
|
|
4
4
|
# The point is for the user to remove these configuration records
|
|
5
5
|
# one by one as the offenses are removed from the code base.
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
|
8
8
|
|
|
9
|
-
# Offense count:
|
|
10
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
11
|
-
# Configuration parameters: TreatCommentsAsGroupSeparators, ConsiderPunctuation.
|
|
12
|
-
Gemspec/OrderedDependencies:
|
|
13
|
-
Exclude:
|
|
14
|
-
- 'expressir.gemspec'
|
|
15
|
-
|
|
16
|
-
# Offense count: 14
|
|
9
|
+
# Offense count: 4
|
|
17
10
|
# This cop supports safe autocorrection (--autocorrect).
|
|
18
11
|
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
|
19
12
|
# SupportedStyles: with_first_argument, with_fixed_indentation
|
|
20
13
|
Layout/ArgumentAlignment:
|
|
21
14
|
Exclude:
|
|
22
|
-
- 'benchmark/srl_benchmark.rb'
|
|
23
|
-
- 'debug_simple_use_clause.rb'
|
|
24
|
-
- 'debug_use_clause.rb'
|
|
25
|
-
- 'lib/expressir/express/parser.rb'
|
|
26
|
-
- 'lib/expressir/express/remark_attacher.rb'
|
|
27
|
-
- 'spec/expressir/model/repository_validator_spec.rb'
|
|
28
|
-
- 'tmp_compare.rb'
|
|
29
|
-
- 'tmp_mem_profile.rb'
|
|
30
|
-
|
|
31
|
-
# Offense count: 4
|
|
32
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
33
|
-
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
|
34
|
-
# SupportedStyles: with_first_element, with_fixed_indentation
|
|
35
|
-
Layout/ArrayAlignment:
|
|
36
|
-
Exclude:
|
|
37
|
-
- 'benchmark/memory_profiler.rb'
|
|
38
|
-
- 'lib/expressir/express/parser.rb'
|
|
39
|
-
- 'spec/expressir/model/search_engine_advanced_spec.rb'
|
|
40
|
-
|
|
41
|
-
# Offense count: 10
|
|
42
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
43
|
-
# Configuration parameters: EnforcedStyleAlignWith.
|
|
44
|
-
# SupportedStylesAlignWith: start_of_line, begin
|
|
45
|
-
Layout/BeginEndAlignment:
|
|
46
|
-
Exclude:
|
|
47
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
48
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
49
|
-
- 'tmp_compare.rb'
|
|
50
|
-
- 'tmp_test_no_transform.rb'
|
|
51
|
-
|
|
52
|
-
# Offense count: 22
|
|
53
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
54
|
-
# Configuration parameters: EnforcedStyleAlignWith.
|
|
55
|
-
# SupportedStylesAlignWith: either, start_of_block, start_of_line
|
|
56
|
-
Layout/BlockAlignment:
|
|
57
|
-
Exclude:
|
|
58
|
-
- 'benchmark/dense_cache_test.rb'
|
|
59
|
-
- 'benchmark/malloc_trim_test.rb'
|
|
60
|
-
- 'benchmark/memory_heap_prep.rb'
|
|
61
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
62
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
63
|
-
- 'benchmark/quick_mem_test.rb'
|
|
64
|
-
- 'benchmark/srl_benchmark.rb'
|
|
65
|
-
- 'debug_model.rb'
|
|
66
|
-
- 'debug_use_clause3.rb'
|
|
67
|
-
- 'lib/expressir/express/builders/entity_decl_builder.rb'
|
|
68
|
-
- 'lib/expressir/package/builder.rb'
|
|
69
|
-
- 'spec/expressir/commands/package_nil_guards_spec.rb'
|
|
70
|
-
- 'spec/expressir/model/repository_validator_spec.rb'
|
|
71
|
-
|
|
72
|
-
# Offense count: 22
|
|
73
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
74
|
-
Layout/BlockEndNewline:
|
|
75
|
-
Exclude:
|
|
76
|
-
- 'benchmark/dense_cache_test.rb'
|
|
77
|
-
- 'benchmark/malloc_trim_test.rb'
|
|
78
|
-
- 'benchmark/memory_heap_prep.rb'
|
|
79
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
80
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
81
|
-
- 'benchmark/quick_mem_test.rb'
|
|
82
|
-
- 'benchmark/srl_benchmark.rb'
|
|
83
|
-
- 'debug_model.rb'
|
|
84
|
-
- 'debug_use_clause3.rb'
|
|
85
|
-
- 'lib/expressir/express/builders/entity_decl_builder.rb'
|
|
86
|
-
- 'lib/expressir/package/builder.rb'
|
|
87
|
-
- 'spec/expressir/commands/package_nil_guards_spec.rb'
|
|
88
|
-
- 'spec/expressir/model/repository_validator_spec.rb'
|
|
89
|
-
|
|
90
|
-
# Offense count: 2
|
|
91
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
92
|
-
Layout/ClosingParenthesisIndentation:
|
|
93
|
-
Exclude:
|
|
94
|
-
- 'lib/expressir/express/parser.rb'
|
|
95
|
-
|
|
96
|
-
# Offense count: 1
|
|
97
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
98
|
-
# Configuration parameters: AllowForAlignment.
|
|
99
|
-
Layout/CommentIndentation:
|
|
100
|
-
Exclude:
|
|
101
|
-
- 'spec/expressir/model/indexes/reference_index_spec.rb'
|
|
102
|
-
|
|
103
|
-
# Offense count: 7
|
|
104
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
105
|
-
Layout/ElseAlignment:
|
|
106
|
-
Exclude:
|
|
107
|
-
- 'debug_use_clause3.rb'
|
|
108
|
-
- 'lib/expressir/express/builders/function_decl_builder.rb'
|
|
109
|
-
- 'lib/expressir/express/builders/procedure_decl_builder.rb'
|
|
110
|
-
- 'lib/expressir/express/builders/rule_decl_builder.rb'
|
|
111
|
-
|
|
112
|
-
# Offense count: 6
|
|
113
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
114
|
-
Layout/EmptyLineAfterGuardClause:
|
|
115
|
-
Exclude:
|
|
116
|
-
- 'lib/expressir/express/builder.rb'
|
|
117
|
-
- 'lib/expressir/model/repository.rb'
|
|
118
|
-
- 'lib/expressir/model/search_engine.rb'
|
|
119
|
-
- 'tmp_mem2.rb'
|
|
120
|
-
- 'tmp_mem_with_opt.rb'
|
|
121
|
-
|
|
122
|
-
# Offense count: 1
|
|
123
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
124
|
-
# Configuration parameters: EmptyLineBetweenMethodDefs, EmptyLineBetweenClassDefs, EmptyLineBetweenModuleDefs, DefLikeMacros, AllowAdjacentOneLineDefs, NumberOfEmptyLines.
|
|
125
|
-
Layout/EmptyLineBetweenDefs:
|
|
126
|
-
Exclude:
|
|
127
|
-
- 'lib/expressir/express/remark_attacher.rb'
|
|
128
|
-
|
|
129
|
-
# Offense count: 12
|
|
130
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
131
|
-
Layout/EmptyLines:
|
|
132
|
-
Exclude:
|
|
133
|
-
- 'lib/expressir/changes/item_change.rb'
|
|
134
|
-
- 'lib/expressir/changes/mapping_change.rb'
|
|
135
|
-
- 'lib/expressir/changes/schema_change.rb'
|
|
136
|
-
- 'lib/expressir/changes/version_change.rb'
|
|
137
|
-
- 'lib/expressir/eengine/arm_compare_report.rb'
|
|
138
|
-
- 'lib/expressir/eengine/changes_section.rb'
|
|
139
|
-
- 'lib/expressir/eengine/mim_compare_report.rb'
|
|
140
|
-
- 'lib/expressir/eengine/modified_object.rb'
|
|
141
15
|
- 'lib/expressir/express/remark_attacher.rb'
|
|
142
|
-
- 'lib/expressir/package/metadata.rb'
|
|
143
|
-
- 'lib/expressir/schema_manifest.rb'
|
|
144
|
-
- 'lib/expressir/schema_manifest_entry.rb'
|
|
145
|
-
|
|
146
|
-
# Offense count: 1
|
|
147
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
148
|
-
Layout/EmptyLinesAfterModuleInclusion:
|
|
149
|
-
Exclude:
|
|
150
|
-
- 'benchmark/malloc_trim_test.rb'
|
|
151
|
-
|
|
152
|
-
# Offense count: 6
|
|
153
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
154
|
-
# Configuration parameters: EnforcedStyle.
|
|
155
|
-
# SupportedStyles: empty_lines, no_empty_lines
|
|
156
|
-
Layout/EmptyLinesAroundBlockBody:
|
|
157
|
-
Exclude:
|
|
158
|
-
- 'benchmark/perf_regression.rb'
|
|
159
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
160
|
-
- 'lib/expressir/express/parser.rb'
|
|
161
|
-
|
|
162
|
-
# Offense count: 3
|
|
163
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
164
|
-
Layout/EmptyLinesAroundMethodBody:
|
|
165
|
-
Exclude:
|
|
166
|
-
- 'benchmark/srl_benchmark.rb'
|
|
167
|
-
- 'debug_simple_use.rb'
|
|
168
|
-
|
|
169
|
-
# Offense count: 7
|
|
170
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
171
|
-
# Configuration parameters: EnforcedStyleAlignWith.
|
|
172
|
-
# SupportedStylesAlignWith: keyword, variable, start_of_line
|
|
173
|
-
Layout/EndAlignment:
|
|
174
|
-
Exclude:
|
|
175
|
-
- 'debug_use_clause3.rb'
|
|
176
|
-
- 'lib/expressir/express/builders/function_decl_builder.rb'
|
|
177
|
-
- 'lib/expressir/express/builders/procedure_decl_builder.rb'
|
|
178
|
-
- 'lib/expressir/express/builders/rule_decl_builder.rb'
|
|
179
|
-
|
|
180
|
-
# Offense count: 3
|
|
181
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
182
|
-
# Configuration parameters: AllowForAlignment, AllowBeforeTrailingComments, ForceEqualSignAlignment.
|
|
183
|
-
Layout/ExtraSpacing:
|
|
184
|
-
Exclude:
|
|
185
|
-
- 'benchmark/srl_benchmark.rb'
|
|
186
|
-
- 'lib/expressir/express/parser.rb'
|
|
187
|
-
- 'tmp_test_no_transform.rb'
|
|
188
|
-
|
|
189
|
-
# Offense count: 2
|
|
190
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
191
|
-
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
|
192
|
-
# SupportedStyles: consistent, consistent_relative_to_receiver, special_for_inner_method_call, special_for_inner_method_call_in_parentheses
|
|
193
|
-
Layout/FirstArgumentIndentation:
|
|
194
|
-
Exclude:
|
|
195
|
-
- 'lib/expressir/express/parser.rb'
|
|
196
|
-
|
|
197
|
-
# Offense count: 2
|
|
198
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
199
|
-
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
|
200
|
-
# SupportedStyles: special_inside_parentheses, consistent, align_brackets
|
|
201
|
-
Layout/FirstArrayElementIndentation:
|
|
202
|
-
Exclude:
|
|
203
|
-
- 'spec/expressir/model/repository_validator_spec.rb'
|
|
204
|
-
|
|
205
|
-
# Offense count: 21
|
|
206
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
207
|
-
# Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle.
|
|
208
|
-
# SupportedHashRocketStyles: key, separator, table
|
|
209
|
-
# SupportedColonStyles: key, separator, table
|
|
210
|
-
# SupportedLastArgumentHashStyles: always_inspect, always_ignore, ignore_implicit, ignore_explicit
|
|
211
|
-
Layout/HashAlignment:
|
|
212
|
-
Exclude:
|
|
213
|
-
- 'benchmark/srl_benchmark.rb'
|
|
214
|
-
- 'benchmark/srl_native_benchmark.rb'
|
|
215
|
-
- 'benchmark/srl_ruby_benchmark.rb'
|
|
216
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
217
|
-
- 'lib/expressir/express/parser.rb'
|
|
218
|
-
- 'lib/expressir/model/exp_file.rb'
|
|
219
|
-
- 'spec/expressir/model/model_element_spec.rb'
|
|
220
16
|
|
|
221
|
-
# Offense count:
|
|
222
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
223
|
-
Layout/HeredocIndentation:
|
|
224
|
-
Exclude:
|
|
225
|
-
- 'debug_simple_use.rb'
|
|
226
|
-
|
|
227
|
-
# Offense count: 28
|
|
228
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
229
|
-
# Configuration parameters: EnforcedStyle.
|
|
230
|
-
# SupportedStyles: normal, indented_internal_methods
|
|
231
|
-
Layout/IndentationConsistency:
|
|
232
|
-
Exclude:
|
|
233
|
-
- 'benchmark/dense_cache_test.rb'
|
|
234
|
-
- 'benchmark/malloc_trim_test.rb'
|
|
235
|
-
- 'benchmark/memory_heap_prep.rb'
|
|
236
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
237
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
238
|
-
- 'benchmark/quick_mem_test.rb'
|
|
239
|
-
- 'tmp_mem_with_opt.rb'
|
|
240
|
-
|
|
241
|
-
# Offense count: 70
|
|
242
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
243
|
-
# Configuration parameters: Width, EnforcedStyleAlignWith, AllowedPatterns.
|
|
244
|
-
# SupportedStylesAlignWith: start_of_line, relative_to_receiver
|
|
245
|
-
Layout/IndentationWidth:
|
|
246
|
-
Enabled: false
|
|
247
|
-
|
|
248
|
-
# Offense count: 1127
|
|
17
|
+
# Offense count: 1082
|
|
249
18
|
# This cop supports safe autocorrection (--autocorrect).
|
|
250
19
|
# Configuration parameters: Max, AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, AllowRBSInlineAnnotation, AllowCopDirectives, AllowedPatterns, SplitStrings.
|
|
251
20
|
# URISchemes: http, https
|
|
252
21
|
Layout/LineLength:
|
|
253
22
|
Enabled: false
|
|
254
23
|
|
|
255
|
-
# Offense count: 1
|
|
256
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
257
|
-
# Configuration parameters: EnforcedStyle.
|
|
258
|
-
# SupportedStyles: symmetrical, new_line, same_line
|
|
259
|
-
Layout/MultilineArrayBraceLayout:
|
|
260
|
-
Exclude:
|
|
261
|
-
- 'spec/expressir/model/repository_validator_spec.rb'
|
|
262
|
-
|
|
263
|
-
# Offense count: 6
|
|
264
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
265
|
-
Layout/MultilineBlockLayout:
|
|
266
|
-
Exclude:
|
|
267
|
-
- 'benchmark/dense_cache_test.rb'
|
|
268
|
-
- 'benchmark/malloc_trim_test.rb'
|
|
269
|
-
- 'benchmark/memory_heap_prep.rb'
|
|
270
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
271
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
272
|
-
- 'benchmark/quick_mem_test.rb'
|
|
273
|
-
|
|
274
|
-
# Offense count: 1
|
|
275
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
276
|
-
# Configuration parameters: EnforcedStyle.
|
|
277
|
-
# SupportedStyles: symmetrical, new_line, same_line
|
|
278
|
-
Layout/MultilineMethodCallBraceLayout:
|
|
279
|
-
Exclude:
|
|
280
|
-
- 'lib/expressir/express/parser.rb'
|
|
281
|
-
|
|
282
|
-
# Offense count: 2
|
|
283
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
284
|
-
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
|
285
|
-
# SupportedStyles: aligned, indented
|
|
286
|
-
Layout/MultilineOperationIndentation:
|
|
287
|
-
Exclude:
|
|
288
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
289
|
-
|
|
290
|
-
# Offense count: 15
|
|
291
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
292
|
-
Layout/RescueEnsureAlignment:
|
|
293
|
-
Exclude:
|
|
294
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
295
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
296
|
-
- 'benchmark/perf_regression.rb'
|
|
297
|
-
- 'benchmark/srl_benchmark.rb'
|
|
298
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
299
|
-
- 'lib/expressir/express/parser.rb'
|
|
300
|
-
- 'tmp_compare.rb'
|
|
301
|
-
- 'tmp_test_no_transform.rb'
|
|
302
|
-
|
|
303
|
-
# Offense count: 3
|
|
304
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
305
|
-
# Configuration parameters: AllowForAlignment, EnforcedStyleForExponentOperator, EnforcedStyleForRationalLiterals.
|
|
306
|
-
# SupportedStylesForExponentOperator: space, no_space
|
|
307
|
-
# SupportedStylesForRationalLiterals: space, no_space
|
|
308
|
-
Layout/SpaceAroundOperators:
|
|
309
|
-
Exclude:
|
|
310
|
-
- 'benchmark/dense_cache_test.rb'
|
|
311
|
-
- 'benchmark/srl_benchmark.rb'
|
|
312
|
-
- 'tmp_compare.rb'
|
|
313
|
-
|
|
314
|
-
# Offense count: 4
|
|
315
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
316
|
-
# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces.
|
|
317
|
-
# SupportedStyles: space, no_space, compact
|
|
318
|
-
# SupportedStylesForEmptyBraces: space, no_space
|
|
319
|
-
Layout/SpaceInsideHashLiteralBraces:
|
|
320
|
-
Exclude:
|
|
321
|
-
- 'tmp_mem_profile.rb'
|
|
322
|
-
|
|
323
|
-
# Offense count: 10
|
|
324
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
325
|
-
# Configuration parameters: EnforcedStyle.
|
|
326
|
-
# SupportedStyles: final_newline, final_blank_line
|
|
327
|
-
Layout/TrailingEmptyLines:
|
|
328
|
-
Exclude:
|
|
329
|
-
- 'benchmark/perf_regression.rb'
|
|
330
|
-
- 'debug_model.rb'
|
|
331
|
-
- 'debug_ruby_parser.rb'
|
|
332
|
-
- 'debug_simple_use.rb'
|
|
333
|
-
- 'debug_simple_use_clause.rb'
|
|
334
|
-
- 'debug_use_clause.rb'
|
|
335
|
-
- 'debug_use_clause2.rb'
|
|
336
|
-
- 'debug_use_clause3.rb'
|
|
337
|
-
- 'debug_use_clause4.rb'
|
|
338
|
-
- 'measure_mem.rb'
|
|
339
|
-
|
|
340
|
-
# Offense count: 49
|
|
341
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
342
|
-
# Configuration parameters: AllowInHeredoc.
|
|
343
|
-
Layout/TrailingWhitespace:
|
|
344
|
-
Enabled: false
|
|
345
|
-
|
|
346
|
-
# Offense count: 19
|
|
347
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
348
|
-
Lint/AmbiguousOperatorPrecedence:
|
|
349
|
-
Exclude:
|
|
350
|
-
- 'benchmark/malloc_trim_test.rb'
|
|
351
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
352
|
-
- 'benchmark/memory_leak_detector.rb'
|
|
353
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
354
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
355
|
-
|
|
356
24
|
# Offense count: 9
|
|
357
25
|
# Configuration parameters: IgnoreLiteralBranches, IgnoreConstantBranches, IgnoreDuplicateElseBranch.
|
|
358
26
|
Lint/DuplicateBranch:
|
|
@@ -375,30 +43,6 @@ Lint/DuplicateMethods:
|
|
|
375
43
|
Exclude:
|
|
376
44
|
- 'lib/expressir/commands/validate_ascii.rb'
|
|
377
45
|
|
|
378
|
-
# Offense count: 11
|
|
379
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
380
|
-
Lint/RedundantDirGlobSort:
|
|
381
|
-
Exclude:
|
|
382
|
-
- 'benchmark/malloc_trim_test.rb'
|
|
383
|
-
- 'benchmark/memory_heap_prep.rb'
|
|
384
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
385
|
-
- 'benchmark/memory_leak_detector.rb'
|
|
386
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
387
|
-
- 'benchmark/perf_regression.rb'
|
|
388
|
-
- 'benchmark/quick_mem_test.rb'
|
|
389
|
-
- 'benchmark/srl_benchmark.rb'
|
|
390
|
-
- 'benchmark/srl_native_benchmark.rb'
|
|
391
|
-
- 'benchmark/srl_ruby_benchmark.rb'
|
|
392
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
393
|
-
|
|
394
|
-
# Offense count: 3
|
|
395
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
396
|
-
Lint/RedundantRequireStatement:
|
|
397
|
-
Exclude:
|
|
398
|
-
- 'lib/expressir/commands/validate_ascii.rb'
|
|
399
|
-
- 'lib/expressir/express/remark_attacher.rb'
|
|
400
|
-
- 'lib/expressir/express/transformer/remark_handling.rb'
|
|
401
|
-
|
|
402
46
|
# Offense count: 2
|
|
403
47
|
# Configuration parameters: AllowedPatterns.
|
|
404
48
|
# AllowedPatterns: (?-mix:(exactly|at_least|at_most)\(\d+\)\.times)
|
|
@@ -406,46 +50,21 @@ Lint/UnreachableLoop:
|
|
|
406
50
|
Exclude:
|
|
407
51
|
- 'lib/expressir/model/dependency_resolver.rb'
|
|
408
52
|
|
|
409
|
-
# Offense count:
|
|
410
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
411
|
-
# Configuration parameters: IgnoreEmptyBlocks, AllowUnusedKeywordArguments.
|
|
412
|
-
Lint/UnusedBlockArgument:
|
|
413
|
-
Exclude:
|
|
414
|
-
- 'benchmark/memory_heap_prep.rb'
|
|
415
|
-
- 'benchmark/memory_profiler.rb'
|
|
416
|
-
|
|
417
|
-
# Offense count: 4
|
|
53
|
+
# Offense count: 3
|
|
418
54
|
# This cop supports safe autocorrection (--autocorrect).
|
|
419
55
|
# Configuration parameters: AllowUnusedKeywordArguments, IgnoreEmptyMethods, IgnoreNotImplementedMethods, NotImplementedExceptions.
|
|
420
56
|
# NotImplementedExceptions: NotImplementedError
|
|
421
57
|
Lint/UnusedMethodArgument:
|
|
422
58
|
Exclude:
|
|
423
|
-
- 'benchmark/srl_benchmark.rb'
|
|
424
59
|
- 'lib/expressir/express/cache.rb'
|
|
425
60
|
- 'lib/expressir/express/parser.rb'
|
|
426
61
|
|
|
427
|
-
# Offense count:
|
|
428
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
429
|
-
Lint/UselessAssignment:
|
|
430
|
-
Exclude:
|
|
431
|
-
- 'benchmark/dense_cache_test.rb'
|
|
432
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
433
|
-
- 'benchmark/memory_leak_detector.rb'
|
|
434
|
-
- 'benchmark/memory_profiler.rb'
|
|
435
|
-
- 'benchmark/perf_regression.rb'
|
|
436
|
-
- 'benchmark/srl_benchmark.rb'
|
|
437
|
-
- 'spec/expressir/express/pretty_formatter_spec.rb'
|
|
438
|
-
- 'spec/expressir/model/indexes/type_index_spec.rb'
|
|
439
|
-
- 'tmp_mem2.rb'
|
|
440
|
-
- 'tmp_mem_profile.rb'
|
|
441
|
-
- 'tmp_mem_with_opt.rb'
|
|
442
|
-
|
|
443
|
-
# Offense count: 244
|
|
62
|
+
# Offense count: 239
|
|
444
63
|
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max.
|
|
445
64
|
Metrics/AbcSize:
|
|
446
65
|
Enabled: false
|
|
447
66
|
|
|
448
|
-
# Offense count:
|
|
67
|
+
# Offense count: 10
|
|
449
68
|
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns, inherit_mode.
|
|
450
69
|
# AllowedMethods: refine
|
|
451
70
|
Metrics/BlockLength:
|
|
@@ -456,12 +75,12 @@ Metrics/BlockLength:
|
|
|
456
75
|
Metrics/BlockNesting:
|
|
457
76
|
Max: 6
|
|
458
77
|
|
|
459
|
-
# Offense count:
|
|
78
|
+
# Offense count: 194
|
|
460
79
|
# Configuration parameters: AllowedMethods, AllowedPatterns, Max.
|
|
461
80
|
Metrics/CyclomaticComplexity:
|
|
462
81
|
Enabled: false
|
|
463
82
|
|
|
464
|
-
# Offense count:
|
|
83
|
+
# Offense count: 287
|
|
465
84
|
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
|
|
466
85
|
Metrics/MethodLength:
|
|
467
86
|
Max: 167
|
|
@@ -471,19 +90,11 @@ Metrics/MethodLength:
|
|
|
471
90
|
Metrics/ParameterLists:
|
|
472
91
|
Max: 8
|
|
473
92
|
|
|
474
|
-
# Offense count:
|
|
93
|
+
# Offense count: 167
|
|
475
94
|
# Configuration parameters: AllowedMethods, AllowedPatterns, Max.
|
|
476
95
|
Metrics/PerceivedComplexity:
|
|
477
96
|
Enabled: false
|
|
478
97
|
|
|
479
|
-
# Offense count: 4
|
|
480
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
481
|
-
# Configuration parameters: EnforcedStyle, BlockForwardingName.
|
|
482
|
-
# SupportedStyles: anonymous, explicit
|
|
483
|
-
Naming/BlockForwarding:
|
|
484
|
-
Exclude:
|
|
485
|
-
- 'lib/expressir/model/repository.rb'
|
|
486
|
-
|
|
487
98
|
# Offense count: 4
|
|
488
99
|
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
|
|
489
100
|
# AllowedNames: as, at, by, cc, db, id, if, in, io, ip, of, on, os, pp, to
|
|
@@ -569,16 +180,7 @@ RSpec/DescribeMethod:
|
|
|
569
180
|
- 'spec/expressir/model/repository_statistics_spec.rb'
|
|
570
181
|
- 'spec/expressir/model/search_engine_advanced_spec.rb'
|
|
571
182
|
|
|
572
|
-
# Offense count:
|
|
573
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
574
|
-
# Configuration parameters: SkipBlocks, EnforcedStyle, OnlyStaticConstants.
|
|
575
|
-
# SupportedStyles: described_class, explicit
|
|
576
|
-
RSpec/DescribedClass:
|
|
577
|
-
Exclude:
|
|
578
|
-
- 'spec/expressir/model/model_element_spec.rb'
|
|
579
|
-
- 'spec/expressir/model/repository_spec.rb'
|
|
580
|
-
|
|
581
|
-
# Offense count: 452
|
|
183
|
+
# Offense count: 453
|
|
582
184
|
# Configuration parameters: CountAsOne.
|
|
583
185
|
RSpec/ExampleLength:
|
|
584
186
|
Max: 122
|
|
@@ -619,7 +221,7 @@ RSpec/IteratedExpectation:
|
|
|
619
221
|
RSpec/MessageSpies:
|
|
620
222
|
EnforcedStyle: receive
|
|
621
223
|
|
|
622
|
-
# Offense count:
|
|
224
|
+
# Offense count: 583
|
|
623
225
|
RSpec/MultipleExpectations:
|
|
624
226
|
Max: 114
|
|
625
227
|
|
|
@@ -664,47 +266,6 @@ Security/MarshalLoad:
|
|
|
664
266
|
Exclude:
|
|
665
267
|
- 'lib/expressir/package/reader.rb'
|
|
666
268
|
|
|
667
|
-
# Offense count: 16
|
|
668
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
669
|
-
# Configuration parameters: AllowOnlyRestArgument, UseAnonymousForwarding, RedundantRestArgumentNames, RedundantKeywordRestArgumentNames, RedundantBlockArgumentNames.
|
|
670
|
-
# RedundantRestArgumentNames: args, arguments
|
|
671
|
-
# RedundantKeywordRestArgumentNames: kwargs, options, opts
|
|
672
|
-
# RedundantBlockArgumentNames: blk, block, proc
|
|
673
|
-
Style/ArgumentsForwarding:
|
|
674
|
-
Exclude:
|
|
675
|
-
- 'lib/expressir/commands/changes_import_eengine.rb'
|
|
676
|
-
- 'lib/expressir/model/repository.rb'
|
|
677
|
-
- 'lib/expressir/model/search_engine.rb'
|
|
678
|
-
|
|
679
|
-
# Offense count: 31
|
|
680
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
681
|
-
# Configuration parameters: EnforcedStyle, ProceduralMethods, FunctionalMethods, AllowedMethods, AllowedPatterns, AllowBracesOnProceduralOneLiners, BracesRequiredMethods.
|
|
682
|
-
# SupportedStyles: line_count_based, semantic, braces_for_chaining, always_braces
|
|
683
|
-
# ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
|
|
684
|
-
# FunctionalMethods: let, let!, subject, watch
|
|
685
|
-
# AllowedMethods: lambda, proc, it
|
|
686
|
-
Style/BlockDelimiters:
|
|
687
|
-
Exclude:
|
|
688
|
-
- 'benchmark/dense_cache_test.rb'
|
|
689
|
-
- 'benchmark/malloc_trim_test.rb'
|
|
690
|
-
- 'benchmark/memory_heap_prep.rb'
|
|
691
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
692
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
693
|
-
- 'benchmark/quick_mem_test.rb'
|
|
694
|
-
- 'benchmark/srl_benchmark.rb'
|
|
695
|
-
- 'debug_model.rb'
|
|
696
|
-
- 'debug_use_clause3.rb'
|
|
697
|
-
- 'lib/expressir/express/builders/entity_decl_builder.rb'
|
|
698
|
-
- 'lib/expressir/package/builder.rb'
|
|
699
|
-
- 'spec/expressir/commands/package_nil_guards_spec.rb'
|
|
700
|
-
- 'spec/expressir/model/repository_validator_spec.rb'
|
|
701
|
-
|
|
702
|
-
# Offense count: 2
|
|
703
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
704
|
-
Style/ConcatArrayLiterals:
|
|
705
|
-
Exclude:
|
|
706
|
-
- 'lib/expressir/express/builders/entity_decl_builder.rb'
|
|
707
|
-
|
|
708
269
|
# Offense count: 1
|
|
709
270
|
# This cop supports safe autocorrection (--autocorrect).
|
|
710
271
|
# Configuration parameters: EnforcedStyle, AllowComments.
|
|
@@ -713,14 +274,6 @@ Style/EmptyElse:
|
|
|
713
274
|
Exclude:
|
|
714
275
|
- 'lib/expressir/commands/changes_validate.rb'
|
|
715
276
|
|
|
716
|
-
# Offense count: 1
|
|
717
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
718
|
-
# Configuration parameters: EnforcedStyle.
|
|
719
|
-
# SupportedStyles: trailing_conditional, ternary
|
|
720
|
-
Style/EmptyStringInsideInterpolation:
|
|
721
|
-
Exclude:
|
|
722
|
-
- 'benchmark/perf_regression.rb'
|
|
723
|
-
|
|
724
277
|
# Offense count: 40
|
|
725
278
|
# This cop supports safe autocorrection (--autocorrect).
|
|
726
279
|
# Configuration parameters: MaxUnannotatedPlaceholdersAllowed, Mode, AllowedMethods, AllowedPatterns.
|
|
@@ -739,231 +292,8 @@ Style/MixinUsage:
|
|
|
739
292
|
Exclude:
|
|
740
293
|
- 'benchmark/srl_benchmark.rb'
|
|
741
294
|
|
|
742
|
-
# Offense count: 2
|
|
743
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
744
|
-
Style/MultilineIfModifier:
|
|
745
|
-
Exclude:
|
|
746
|
-
- 'tmp_compare.rb'
|
|
747
|
-
|
|
748
|
-
# Offense count: 1
|
|
749
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
750
|
-
Style/MultilineTernaryOperator:
|
|
751
|
-
Exclude:
|
|
752
|
-
- 'debug_use_clause3.rb'
|
|
753
|
-
|
|
754
|
-
# Offense count: 3
|
|
755
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
756
|
-
# Configuration parameters: AllowMethodComparison, ComparisonsThreshold.
|
|
757
|
-
Style/MultipleComparison:
|
|
758
|
-
Exclude:
|
|
759
|
-
- 'benchmark/memory_profiler.rb'
|
|
760
|
-
- 'lib/expressir/express/parser.rb'
|
|
761
|
-
|
|
762
|
-
# Offense count: 1
|
|
763
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
764
|
-
# Configuration parameters: EnforcedStyle.
|
|
765
|
-
# SupportedStyles: literals, strict
|
|
766
|
-
Style/MutableConstant:
|
|
767
|
-
Exclude:
|
|
768
|
-
- 'benchmark/perf_regression.rb'
|
|
769
|
-
|
|
770
|
-
# Offense count: 19
|
|
771
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
772
|
-
# Configuration parameters: EnforcedStyle, AllowedMethods, AllowedPatterns.
|
|
773
|
-
# SupportedStyles: predicate, comparison
|
|
774
|
-
Style/NumericPredicate:
|
|
775
|
-
Exclude:
|
|
776
|
-
- 'spec/**/*'
|
|
777
|
-
- 'benchmark/memory_leak_detector.rb'
|
|
778
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
779
|
-
- 'benchmark/memory_profiler.rb'
|
|
780
|
-
- 'benchmark/perf_regression.rb'
|
|
781
|
-
- 'benchmark/srl_benchmark.rb'
|
|
782
|
-
- 'benchmark/srl_native_benchmark.rb'
|
|
783
|
-
- 'benchmark/srl_ruby_benchmark.rb'
|
|
784
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
785
|
-
- 'lib/expressir/express/parser.rb'
|
|
786
|
-
- 'tmp_compare.rb'
|
|
787
|
-
|
|
788
295
|
# Offense count: 3
|
|
789
296
|
# Configuration parameters: AllowedClasses.
|
|
790
297
|
Style/OneClassPerFile:
|
|
791
298
|
Exclude:
|
|
792
299
|
- 'benchmark/srl_benchmark.rb'
|
|
793
|
-
|
|
794
|
-
# Offense count: 1
|
|
795
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
796
|
-
Style/RedundantAssignment:
|
|
797
|
-
Exclude:
|
|
798
|
-
- 'debug_simple_use.rb'
|
|
799
|
-
|
|
800
|
-
# Offense count: 4
|
|
801
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
802
|
-
Style/RedundantBegin:
|
|
803
|
-
Exclude:
|
|
804
|
-
- 'benchmark/perf_regression.rb'
|
|
805
|
-
- 'benchmark/srl_benchmark.rb'
|
|
806
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
807
|
-
- 'lib/expressir/express/parser.rb'
|
|
808
|
-
|
|
809
|
-
# Offense count: 6
|
|
810
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
811
|
-
Style/RedundantParentheses:
|
|
812
|
-
Exclude:
|
|
813
|
-
- 'benchmark/srl_benchmark.rb'
|
|
814
|
-
- 'benchmark/srl_native_benchmark.rb'
|
|
815
|
-
- 'benchmark/srl_ruby_benchmark.rb'
|
|
816
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
817
|
-
- 'lib/expressir/express/parser.rb'
|
|
818
|
-
|
|
819
|
-
# Offense count: 2
|
|
820
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
821
|
-
Style/RedundantStringEscape:
|
|
822
|
-
Exclude:
|
|
823
|
-
- 'benchmark/srl_benchmark.rb'
|
|
824
|
-
|
|
825
|
-
# Offense count: 9
|
|
826
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
827
|
-
Style/RescueModifier:
|
|
828
|
-
Exclude:
|
|
829
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
830
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
831
|
-
- 'benchmark/srl_benchmark.rb'
|
|
832
|
-
- 'tmp_compare.rb'
|
|
833
|
-
- 'tmp_test_no_transform.rb'
|
|
834
|
-
|
|
835
|
-
# Offense count: 32
|
|
836
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
837
|
-
# Configuration parameters: EnforcedStyle.
|
|
838
|
-
# SupportedStyles: implicit, explicit
|
|
839
|
-
Style/RescueStandardError:
|
|
840
|
-
Exclude:
|
|
841
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
842
|
-
- 'benchmark/memory_leak_detector.rb'
|
|
843
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
844
|
-
- 'benchmark/perf_regression.rb'
|
|
845
|
-
- 'benchmark/srl_benchmark.rb'
|
|
846
|
-
- 'benchmark/srl_native_benchmark.rb'
|
|
847
|
-
- 'benchmark/srl_ruby_benchmark.rb'
|
|
848
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
849
|
-
- 'tmp_compare.rb'
|
|
850
|
-
- 'tmp_mem2.rb'
|
|
851
|
-
- 'tmp_mem_with_opt.rb'
|
|
852
|
-
- 'tmp_test_no_transform.rb'
|
|
853
|
-
|
|
854
|
-
# Offense count: 1
|
|
855
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
856
|
-
# Configuration parameters: ConvertCodeThatCanStartToReturnNil, AllowedMethods, MaxChainLength.
|
|
857
|
-
# AllowedMethods: present?, blank?, presence, try, try!
|
|
858
|
-
Style/SafeNavigation:
|
|
859
|
-
Exclude:
|
|
860
|
-
- 'lib/expressir/model/repository.rb'
|
|
861
|
-
|
|
862
|
-
# Offense count: 6
|
|
863
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
864
|
-
Style/SelectByKind:
|
|
865
|
-
Exclude:
|
|
866
|
-
- 'debug_model.rb'
|
|
867
|
-
- 'lib/expressir/express/formatters/remark_formatter.rb'
|
|
868
|
-
- 'lib/expressir/model/model_element.rb'
|
|
869
|
-
|
|
870
|
-
# Offense count: 10
|
|
871
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
872
|
-
# Configuration parameters: AllowAsExpressionSeparator.
|
|
873
|
-
Style/Semicolon:
|
|
874
|
-
Exclude:
|
|
875
|
-
- 'benchmark/dense_cache_test.rb'
|
|
876
|
-
- 'benchmark/malloc_trim_test.rb'
|
|
877
|
-
- 'benchmark/memory_heap_prep.rb'
|
|
878
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
879
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
880
|
-
- 'benchmark/quick_mem_test.rb'
|
|
881
|
-
- 'tmp_mem_with_opt.rb'
|
|
882
|
-
|
|
883
|
-
# Offense count: 27
|
|
884
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
885
|
-
# Configuration parameters: Mode.
|
|
886
|
-
Style/StringConcatenation:
|
|
887
|
-
Exclude:
|
|
888
|
-
- 'benchmark/malloc_trim_test.rb'
|
|
889
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
890
|
-
- 'benchmark/memory_leak_detector.rb'
|
|
891
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
892
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
893
|
-
|
|
894
|
-
# Offense count: 128
|
|
895
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
896
|
-
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
|
|
897
|
-
# SupportedStyles: single_quotes, double_quotes
|
|
898
|
-
Style/StringLiterals:
|
|
899
|
-
Exclude:
|
|
900
|
-
- 'benchmark/dense_cache_test.rb'
|
|
901
|
-
- 'benchmark/malloc_trim_test.rb'
|
|
902
|
-
- 'benchmark/memory_heap_prep.rb'
|
|
903
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
904
|
-
- 'benchmark/memory_leak_detector.rb'
|
|
905
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
906
|
-
- 'benchmark/memory_profiler.rb'
|
|
907
|
-
- 'benchmark/perf_regression.rb'
|
|
908
|
-
- 'benchmark/quick_mem_test.rb'
|
|
909
|
-
- 'benchmark/srl_benchmark.rb'
|
|
910
|
-
- 'benchmark/srl_native_benchmark.rb'
|
|
911
|
-
- 'benchmark/srl_ruby_benchmark.rb'
|
|
912
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
913
|
-
- 'lib/expressir/express/parser.rb'
|
|
914
|
-
|
|
915
|
-
# Offense count: 14
|
|
916
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
917
|
-
# Configuration parameters: EnforcedStyle.
|
|
918
|
-
# SupportedStyles: single_quotes, double_quotes
|
|
919
|
-
Style/StringLiteralsInInterpolation:
|
|
920
|
-
Exclude:
|
|
921
|
-
- 'benchmark/malloc_trim_test.rb'
|
|
922
|
-
- 'benchmark/memory_isolation_test.rb'
|
|
923
|
-
- 'benchmark/memory_leak_detector.rb'
|
|
924
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
925
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
926
|
-
|
|
927
|
-
# Offense count: 1
|
|
928
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
929
|
-
# Configuration parameters: .
|
|
930
|
-
# SupportedStyles: percent, brackets
|
|
931
|
-
Style/SymbolArray:
|
|
932
|
-
EnforcedStyle: percent
|
|
933
|
-
MinSize: 5
|
|
934
|
-
|
|
935
|
-
# Offense count: 2
|
|
936
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
937
|
-
# Configuration parameters: AllowMethodsWithArguments, AllowedMethods, AllowedPatterns, AllowComments.
|
|
938
|
-
# AllowedMethods: define_method
|
|
939
|
-
Style/SymbolProc:
|
|
940
|
-
Exclude:
|
|
941
|
-
- 'debug_model.rb'
|
|
942
|
-
|
|
943
|
-
# Offense count: 3
|
|
944
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
945
|
-
# Configuration parameters: EnforcedStyleForMultiline.
|
|
946
|
-
# SupportedStylesForMultiline: comma, consistent_comma, diff_comma, no_comma
|
|
947
|
-
Style/TrailingCommaInArguments:
|
|
948
|
-
Exclude:
|
|
949
|
-
- 'benchmark/srl_benchmark.rb'
|
|
950
|
-
- 'spec/expressir/express/pretty_formatter_spec.rb'
|
|
951
|
-
|
|
952
|
-
# Offense count: 3
|
|
953
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
954
|
-
# Configuration parameters: EnforcedStyleForMultiline.
|
|
955
|
-
# SupportedStylesForMultiline: comma, consistent_comma, diff_comma, no_comma
|
|
956
|
-
Style/TrailingCommaInArrayLiteral:
|
|
957
|
-
Exclude:
|
|
958
|
-
- 'benchmark/memory_objectspace_test.rb'
|
|
959
|
-
- 'tmp_mem2.rb'
|
|
960
|
-
|
|
961
|
-
# Offense count: 5
|
|
962
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
963
|
-
# Configuration parameters: EnforcedStyleForMultiline.
|
|
964
|
-
# SupportedStylesForMultiline: comma, consistent_comma, diff_comma, no_comma
|
|
965
|
-
Style/TrailingCommaInHashLiteral:
|
|
966
|
-
Exclude:
|
|
967
|
-
- 'benchmark/perf_regression.rb'
|
|
968
|
-
- 'benchmark/validate_load_benchmark.rb'
|
|
969
|
-
- 'lib/expressir/express/parser.rb'
|
data/Gemfile
CHANGED
|
@@ -115,26 +115,6 @@ module Expressir
|
|
|
115
115
|
end
|
|
116
116
|
end
|
|
117
117
|
|
|
118
|
-
def extract_description(compare_report)
|
|
119
|
-
parts = []
|
|
120
|
-
|
|
121
|
-
[compare_report.modifications, compare_report.additions,
|
|
122
|
-
compare_report.deletions].each do |section|
|
|
123
|
-
next unless section&.modified_objects
|
|
124
|
-
|
|
125
|
-
section.modified_objects.each do |obj|
|
|
126
|
-
next unless obj.description
|
|
127
|
-
|
|
128
|
-
description_text = normalize_description(obj.description)
|
|
129
|
-
next if description_text.strip.empty?
|
|
130
|
-
|
|
131
|
-
parts << convert_html_to_asciidoc(description_text.strip)
|
|
132
|
-
end
|
|
133
|
-
end
|
|
134
|
-
|
|
135
|
-
parts.empty? ? nil : parts.join("\n\n")
|
|
136
|
-
end
|
|
137
|
-
|
|
138
118
|
def normalize_description(description)
|
|
139
119
|
# Handle both String and Array (when XML has nested elements)
|
|
140
120
|
case description
|
|
@@ -340,14 +340,6 @@ module Expressir
|
|
|
340
340
|
end
|
|
341
341
|
end
|
|
342
342
|
|
|
343
|
-
def to_snake_case(name)
|
|
344
|
-
cached_snake_case(name)
|
|
345
|
-
end
|
|
346
|
-
|
|
347
|
-
def convert_keys_to_snake_case(obj)
|
|
348
|
-
fast_convert_keys(obj)
|
|
349
|
-
end
|
|
350
|
-
|
|
351
343
|
def extract_source_info(data)
|
|
352
344
|
return nil unless data
|
|
353
345
|
return nil unless @source
|
|
@@ -728,7 +728,6 @@ module Expressir
|
|
|
728
728
|
@exp_file.schemas.each do |schema|
|
|
729
729
|
schema.file = schema_file
|
|
730
730
|
schema.file_basename = File.basename(schema_file, ".exp")
|
|
731
|
-
schema.formatted = schema.to_s(no_remarks: true)
|
|
732
731
|
end
|
|
733
732
|
|
|
734
733
|
unless skip_references
|
|
@@ -820,7 +819,6 @@ root_path: nil, use_native: nil)
|
|
|
820
819
|
exp_file.schemas.each do |schema|
|
|
821
820
|
schema.file = nil
|
|
822
821
|
schema.file_basename = nil
|
|
823
|
-
schema.formatted = schema.to_s(no_remarks: true)
|
|
824
822
|
end
|
|
825
823
|
|
|
826
824
|
unless skip_references
|
|
@@ -855,7 +853,6 @@ include_source: nil)
|
|
|
855
853
|
exp_file.schemas.each do |schema|
|
|
856
854
|
schema.file = nil
|
|
857
855
|
schema.file_basename = nil
|
|
858
|
-
schema.formatted = schema.to_s(no_remarks: true)
|
|
859
856
|
end
|
|
860
857
|
|
|
861
858
|
unless skip_references
|
|
@@ -903,7 +900,6 @@ include_source: nil)
|
|
|
903
900
|
exp_file.schemas.each do |schema|
|
|
904
901
|
schema.file = nil
|
|
905
902
|
schema.file_basename = nil
|
|
906
|
-
schema.formatted = schema.to_s(no_remarks: true)
|
|
907
903
|
end
|
|
908
904
|
|
|
909
905
|
unless skip_references
|
|
@@ -917,10 +917,10 @@ module Expressir
|
|
|
917
917
|
src = node.source.to_s
|
|
918
918
|
# Accept position=0 if source is a declaration keyword line
|
|
919
919
|
valid = src.start_with?("SCHEMA", "ENTITY", "TYPE", "FUNCTION",
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
920
|
+
"PROCEDURE", "RULE", "CONSTANT", "VARIABLE",
|
|
921
|
+
"USE", "REFERENCE", "END_SCHEMA", "END_ENTITY",
|
|
922
|
+
"END_TYPE", "END_FUNCTION", "END_PROCEDURE",
|
|
923
|
+
"END_RULE", "END_CONSTANT", "END_VARIABLE")
|
|
924
924
|
end
|
|
925
925
|
if valid
|
|
926
926
|
line = get_line_number(pos)
|
|
@@ -19,7 +19,6 @@ module Expressir
|
|
|
19
19
|
attribute :procedures, Procedure, collection: true
|
|
20
20
|
attribute :_class, :string, default: -> { self.class.name }
|
|
21
21
|
attribute :selected, :boolean, default: false
|
|
22
|
-
attribute :formatted, :string
|
|
23
22
|
attribute :file_basename, :string
|
|
24
23
|
|
|
25
24
|
key_value do
|
|
@@ -39,6 +38,14 @@ module Expressir
|
|
|
39
38
|
map "procedures", to: :procedures
|
|
40
39
|
end
|
|
41
40
|
|
|
41
|
+
liquid do
|
|
42
|
+
map :formatted, to: :formatted
|
|
43
|
+
map :source, to: :source
|
|
44
|
+
map :full_source, to: :full_source
|
|
45
|
+
map :children, to: :children
|
|
46
|
+
map :safe_children, to: :safe_children
|
|
47
|
+
end
|
|
48
|
+
|
|
42
49
|
# @return [Array<Declaration>]
|
|
43
50
|
def safe_children
|
|
44
51
|
[
|
|
@@ -66,6 +73,10 @@ module Expressir
|
|
|
66
73
|
Expressir::Express::Formatter.format(self)
|
|
67
74
|
end
|
|
68
75
|
|
|
76
|
+
def formatted
|
|
77
|
+
@formatted ||= to_s(no_remarks: true)
|
|
78
|
+
end
|
|
79
|
+
|
|
69
80
|
def source
|
|
70
81
|
formatter = Class.new(Expressir::Express::Formatter) do
|
|
71
82
|
include Expressir::Express::SchemaHeadFormatter
|
|
@@ -203,14 +203,6 @@ module Expressir
|
|
|
203
203
|
self.untagged_remarks << remark_info
|
|
204
204
|
end
|
|
205
205
|
|
|
206
|
-
# Get all remarks as RemarkInfo objects
|
|
207
|
-
# @return [Array<RemarkInfo>] Array of RemarkInfo objects
|
|
208
|
-
def remark_infos
|
|
209
|
-
return [] if untagged_remarks.nil?
|
|
210
|
-
|
|
211
|
-
untagged_remarks.grep(RemarkInfo)
|
|
212
|
-
end
|
|
213
|
-
|
|
214
206
|
private
|
|
215
207
|
|
|
216
208
|
# @return [nil]
|
data/lib/expressir/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: expressir
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-05-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|
|
@@ -507,7 +507,6 @@ files:
|
|
|
507
507
|
- lib/expressir/package/reader.rb
|
|
508
508
|
- lib/expressir/schema_manifest.rb
|
|
509
509
|
- lib/expressir/schema_manifest_entry.rb
|
|
510
|
-
- lib/expressir/transformer.rb
|
|
511
510
|
- lib/expressir/version.rb
|
|
512
511
|
homepage: https://github.com/lutaml/expressir
|
|
513
512
|
licenses:
|