edoxen 0.1.1 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c5b96952dff52eca74ca77c35534cf68e380e57694eec5f308fe855b306bd3b2
4
- data.tar.gz: c19d66b0f115b74562a01d04a19e1416f2ee7414010d7cca991f84ee37c39245
3
+ metadata.gz: e2f2624a6aaa7b4768b08653550d783b384d7cf0e7316ac2f06f6dd4937a94cd
4
+ data.tar.gz: 3863fe31175019944f0d5dd2c1a1d0ab6146f01403a0f16da0db310214cfb99e
5
5
  SHA512:
6
- metadata.gz: d44772650c4943aa5d487969edb49db47a8078ff7544fe68d7d581e238eb4d1d8b1c4268919cbd823b5f7787c2edf81040b7342ae05392ccfe21e1159f5e9e34
7
- data.tar.gz: 0e079b28ade73d23191d517fbf676fd22f2a1584670575b1d3ad42bbc18673c02836feba67191d72733aee37be1aa27abb6f5b087aac824fa71132889249cd72
6
+ metadata.gz: a0ae0c3bd3870ead7201ca924480a29deb712cc41b0590a2dde5f3136da50bd78ef24e6e03580e2b7fec274cfa2bed3c3b1d80ccc604f2b69aaeed53d9b26f99
7
+ data.tar.gz: bb0470982922625d7f6ff36e4b98137486ebd9938a102392bbfbe3fb5e95fba1f727e1ddcf8125778fbfaf10ee08bd06edda1dc2a896f8d12cf34c87f0e0e2b9
data/.rubocop_todo.yml CHANGED
@@ -1,11 +1,19 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2025-07-18 13:23:46 UTC using RuboCop version 1.78.0.
3
+ # on 2025-07-20 10:40:54 UTC using RuboCop version 1.78.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: 2
10
+ # This cop supports safe autocorrection (--autocorrect).
11
+ # Configuration parameters: TreatCommentsAsGroupSeparators, ConsiderPunctuation, Include.
12
+ # Include: **/*.gemspec
13
+ Gemspec/OrderedDependencies:
14
+ Exclude:
15
+ - 'edoxen.gemspec'
16
+
9
17
  # Offense count: 1
10
18
  # Configuration parameters: Severity, Include.
11
19
  # Include: **/*.gemspec
@@ -13,30 +21,57 @@ Gemspec/RequiredRubyVersion:
13
21
  Exclude:
14
22
  - 'edoxen.gemspec'
15
23
 
16
- # Offense count: 13
24
+ # Offense count: 1
25
+ # This cop supports safe autocorrection (--autocorrect).
26
+ # Configuration parameters: EnforcedStyleAlignWith.
27
+ # SupportedStylesAlignWith: either, start_of_block, start_of_line
28
+ Layout/BlockAlignment:
29
+ Exclude:
30
+ - 'lib/edoxen/schema_validator.rb'
31
+
32
+ # Offense count: 1
33
+ # This cop supports safe autocorrection (--autocorrect).
34
+ Layout/BlockEndNewline:
35
+ Exclude:
36
+ - 'lib/edoxen/schema_validator.rb'
37
+
38
+ # Offense count: 1
17
39
  # This cop supports safe autocorrection (--autocorrect).
18
40
  Layout/EmptyLineAfterMagicComment:
19
41
  Exclude:
20
- - 'lib/edoxen/action.rb'
21
- - 'lib/edoxen/approval.rb'
22
- - 'lib/edoxen/consideration.rb'
23
- - 'lib/edoxen/meeting_identfier.rb'
42
+ - 'test.rb'
43
+
44
+ # Offense count: 3
45
+ # This cop supports safe autocorrection (--autocorrect).
46
+ # Configuration parameters: EnforcedStyle.
47
+ # SupportedStyles: empty_lines, empty_lines_except_namespace, empty_lines_special, no_empty_lines, beginning_only, ending_only
48
+ Layout/EmptyLinesAroundClassBody:
49
+ Exclude:
24
50
  - 'lib/edoxen/resolution.rb'
25
- - 'lib/edoxen/resolution_collection.rb'
26
51
  - 'lib/edoxen/resolution_date.rb'
27
- - 'lib/edoxen/resolution_relationship.rb'
28
- - 'lib/edoxen/structured_identifier.rb'
29
- - 'lib/edoxen/subject_body.rb'
30
- - 'spec/edoxen/action_spec.rb'
31
- - 'spec/edoxen/resolution_collection_spec.rb'
32
- - 'spec/edoxen/resolution_spec.rb'
52
+ - 'lib/edoxen/resolution_set.rb'
33
53
 
34
- # Offense count: 1
54
+ # Offense count: 2
35
55
  # This cop supports safe autocorrection (--autocorrect).
36
- # Configuration parameters: AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
37
- # URISchemes: http, https
38
- Layout/LineLength:
39
- Max: 123
56
+ Layout/EmptyLinesAroundExceptionHandlingKeywords:
57
+ Exclude:
58
+ - 'lib/edoxen/schema_validator.rb'
59
+ - 'round_trip_test.rb'
60
+
61
+ # Offense count: 3
62
+ # This cop supports safe autocorrection (--autocorrect).
63
+ # Configuration parameters: AllowForAlignment, AllowBeforeTrailingComments, ForceEqualSignAlignment.
64
+ Layout/ExtraSpacing:
65
+ Exclude:
66
+ - 'lib/edoxen/cli.rb'
67
+ - 'lib/edoxen/schema_validator.rb'
68
+
69
+ # Offense count: 2
70
+ # This cop supports safe autocorrection (--autocorrect).
71
+ # Configuration parameters: Width, AllowedPatterns.
72
+ Layout/IndentationWidth:
73
+ Exclude:
74
+ - 'lib/edoxen/schema_validator.rb'
40
75
 
41
76
  # Offense count: 1
42
77
  # Configuration parameters: AllowComments.
@@ -44,13 +79,76 @@ Lint/EmptyFile:
44
79
  Exclude:
45
80
  - 'lib/edoxen/meeting.rb'
46
81
 
47
- # Offense count: 14
82
+ # Offense count: 1
83
+ # Configuration parameters: AllowedParentClasses.
84
+ Lint/MissingSuper:
85
+ Exclude:
86
+ - 'lib/edoxen/schema_validator.rb'
87
+
88
+ # Offense count: 4
89
+ # This cop supports safe autocorrection (--autocorrect).
90
+ # Configuration parameters: AutoCorrect, AllowUnusedKeywordArguments, IgnoreEmptyMethods, IgnoreNotImplementedMethods, NotImplementedExceptions.
91
+ # NotImplementedExceptions: NotImplementedError
92
+ Lint/UnusedMethodArgument:
93
+ Exclude:
94
+ - 'lib/edoxen/schema_validator.rb'
95
+
96
+ # Offense count: 3
97
+ # This cop supports safe autocorrection (--autocorrect).
98
+ # Configuration parameters: AutoCorrect.
99
+ Lint/UselessAssignment:
100
+ Exclude:
101
+ - 'lib/edoxen/schema_validator.rb'
102
+ - 'round_trip_test.rb'
103
+
104
+ # Offense count: 8
105
+ # Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
106
+ Metrics/AbcSize:
107
+ Max: 67
108
+
109
+ # Offense count: 9
48
110
  # Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
49
111
  # AllowedMethods: refine
50
112
  Metrics/BlockLength:
51
- Max: 234
113
+ Max: 146
114
+
115
+ # Offense count: 3
116
+ # Configuration parameters: CountComments, CountAsOne.
117
+ Metrics/ClassLength:
118
+ Max: 167
119
+
120
+ # Offense count: 6
121
+ # Configuration parameters: AllowedMethods, AllowedPatterns.
122
+ Metrics/CyclomaticComplexity:
123
+ Max: 16
52
124
 
53
125
  # Offense count: 10
126
+ # Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
127
+ Metrics/MethodLength:
128
+ Max: 50
129
+
130
+ # Offense count: 1
131
+ # Configuration parameters: CountKeywordArgs, MaxOptionalParameters.
132
+ Metrics/ParameterLists:
133
+ Max: 6
134
+
135
+ # Offense count: 6
136
+ # Configuration parameters: AllowedMethods, AllowedPatterns.
137
+ Metrics/PerceivedComplexity:
138
+ Max: 17
139
+
140
+ # Offense count: 2
141
+ # This cop supports safe autocorrection (--autocorrect).
142
+ # Configuration parameters: EnforcedStyle, ProceduralMethods, FunctionalMethods, AllowedMethods, AllowedPatterns, AllowBracesOnProceduralOneLiners, BracesRequiredMethods.
143
+ # SupportedStyles: line_count_based, semantic, braces_for_chaining, always_braces
144
+ # ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
145
+ # FunctionalMethods: let, let!, subject, watch
146
+ # AllowedMethods: lambda, proc, it
147
+ Style/BlockDelimiters:
148
+ Exclude:
149
+ - 'lib/edoxen/schema_validator.rb'
150
+
151
+ # Offense count: 15
54
152
  # Configuration parameters: AllowedConstants.
55
153
  Style/Documentation:
56
154
  Exclude:
@@ -59,38 +157,102 @@ Style/Documentation:
59
157
  - 'lib/edoxen.rb'
60
158
  - 'lib/edoxen/action.rb'
61
159
  - 'lib/edoxen/approval.rb'
160
+ - 'lib/edoxen/cli.rb'
62
161
  - 'lib/edoxen/consideration.rb'
63
- - 'lib/edoxen/meeting_identfier.rb'
162
+ - 'lib/edoxen/meeting_identifier.rb'
163
+ - 'lib/edoxen/metadata.rb'
64
164
  - 'lib/edoxen/resolution.rb'
65
- - 'lib/edoxen/resolution_collection.rb'
66
- - 'lib/edoxen/resolution_relationship.rb'
67
- - 'lib/edoxen/structured_identifier.rb'
68
- - 'lib/edoxen/subject_body.rb'
165
+ - 'lib/edoxen/resolution_date.rb'
166
+ - 'lib/edoxen/resolution_relation.rb'
167
+ - 'lib/edoxen/resolution_set.rb'
168
+ - 'lib/edoxen/schema_validator.rb'
169
+ - 'lib/edoxen/url.rb'
170
+ - 'round_trip_test.rb'
69
171
 
70
- # Offense count: 13
172
+ # Offense count: 1
71
173
  # This cop supports unsafe autocorrection (--autocorrect-all).
72
174
  # Configuration parameters: EnforcedStyle.
73
175
  # SupportedStyles: always, always_true, never
74
176
  Style/FrozenStringLiteralComment:
75
177
  Exclude:
76
178
  - '**/*.arb'
77
- - 'lib/edoxen/action.rb'
78
- - 'lib/edoxen/approval.rb'
79
- - 'lib/edoxen/consideration.rb'
80
- - 'lib/edoxen/meeting_identfier.rb'
81
- - 'lib/edoxen/resolution.rb'
82
- - 'lib/edoxen/resolution_collection.rb'
83
- - 'lib/edoxen/resolution_date.rb'
84
- - 'lib/edoxen/resolution_relationship.rb'
85
- - 'lib/edoxen/structured_identifier.rb'
86
- - 'lib/edoxen/subject_body.rb'
87
- - 'spec/edoxen/action_spec.rb'
88
- - 'spec/edoxen/resolution_collection_spec.rb'
89
- - 'spec/edoxen/resolution_spec.rb'
179
+ - 'test.rb'
180
+
181
+ # Offense count: 1
182
+ # This cop supports unsafe autocorrection (--autocorrect-all).
183
+ # Configuration parameters: AllowedReceivers.
184
+ # AllowedReceivers: Thread.current
185
+ Style/HashEachMethods:
186
+ Exclude:
187
+ - 'lib/edoxen/schema_validator.rb'
188
+
189
+ # Offense count: 4
190
+ # This cop supports safe autocorrection (--autocorrect).
191
+ Style/IfUnlessModifier:
192
+ Exclude:
193
+ - 'lib/edoxen/cli.rb'
194
+ - 'lib/edoxen/schema_validator.rb'
195
+ - 'round_trip_test.rb'
196
+
197
+ # Offense count: 5
198
+ # This cop supports unsafe autocorrection (--autocorrect-all).
199
+ # Configuration parameters: EnforcedStyle, AllowedMethods, AllowedPatterns.
200
+ # SupportedStyles: predicate, comparison
201
+ Style/NumericPredicate:
202
+ Exclude:
203
+ - 'spec/**/*'
204
+ - 'lib/edoxen/cli.rb'
205
+ - 'round_trip_test.rb'
206
+
207
+ # Offense count: 5
208
+ # This cop supports safe autocorrection (--autocorrect).
209
+ # Configuration parameters: EnforcedStyle.
210
+ # SupportedStyles: implicit, explicit
211
+ Style/RescueStandardError:
212
+ Exclude:
213
+ - 'lib/edoxen/cli.rb'
214
+ - 'lib/edoxen/schema_validator.rb'
215
+ - 'round_trip_test.rb'
216
+
217
+ # Offense count: 1
218
+ # This cop supports unsafe autocorrection (--autocorrect-all).
219
+ Style/SlicingWithRange:
220
+ Exclude:
221
+ - 'lib/edoxen/schema_validator.rb'
222
+
223
+ # Offense count: 7
224
+ # This cop supports unsafe autocorrection (--autocorrect-all).
225
+ # Configuration parameters: Mode.
226
+ Style/StringConcatenation:
227
+ Exclude:
228
+ - 'lib/edoxen/schema_validator.rb'
229
+ - 'round_trip_test.rb'
230
+
231
+ # Offense count: 10
232
+ # This cop supports safe autocorrection (--autocorrect).
233
+ # Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
234
+ # SupportedStyles: single_quotes, double_quotes
235
+ Style/StringLiterals:
236
+ Exclude:
237
+ - 'round_trip_test.rb'
238
+
239
+ # Offense count: 9
240
+ # This cop supports safe autocorrection (--autocorrect).
241
+ # Configuration parameters: EnforcedStyle.
242
+ # SupportedStyles: single_quotes, double_quotes
243
+ Style/StringLiteralsInInterpolation:
244
+ Exclude:
245
+ - 'round_trip_test.rb'
246
+
247
+ # Offense count: 1
248
+ # This cop supports safe autocorrection (--autocorrect).
249
+ Style/UnlessElse:
250
+ Exclude:
251
+ - 'lib/edoxen/schema_validator.rb'
90
252
 
91
253
  # Offense count: 1
92
254
  # This cop supports safe autocorrection (--autocorrect).
93
255
  # Configuration parameters: AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
94
256
  # URISchemes: http, https
95
257
  Layout/LineLength:
96
- Max: 123
258
+ Max: 122