voids 2.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d9b79995cb20862d8567f3031c8bf0a8a12dd9501ce8be84dbdf31472f3e2aac
4
+ data.tar.gz: 3150180efa5c939ab91e70fef7dc9c5b489d9155c504908629a1821ae454ccfc
5
+ SHA512:
6
+ metadata.gz: 7773cc74efa588e6d919e225e4338b2c79005f5153932f63b2cc2965857ce73ffebef0ed33dae093c1bfb3a9c92291e95459f4802a37a56c3049212025706356
7
+ data.tar.gz: 2c7d591765982c89822c1c968c6e15d6a9a7b10f2dda51035a42b014f0bb77fdf79056c4a0f96ac7c69774a0ff5961a070d183a044c9d37c5d39c169a0710c00
@@ -0,0 +1,11 @@
1
+ version: 2.1
2
+ orbs:
3
+ ruby-rails: sul-dlss/ruby-rails@4.13.1
4
+ workflows:
5
+ build:
6
+ jobs:
7
+ - ruby-rails/lint:
8
+ name: lint
9
+ - ruby-rails/test-gem:
10
+ name: test
11
+ context: dlss
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,356 @@
1
+ inherit_from: .rubocop_todo.yml
2
+
3
+ plugins:
4
+ - rubocop-rspec
5
+
6
+ AllCops:
7
+ TargetRubyVersion: 3.4
8
+ SuggestExtensions: false
9
+ Exclude:
10
+ - examples/**/*
11
+
12
+ RSpec/ExampleLength:
13
+ Enabled: false
14
+
15
+ RSpec/MultipleExpectations:
16
+ Enabled: false
17
+
18
+ RSpec/MultipleMemoizedHelpers:
19
+ Enabled: false
20
+
21
+ Gemspec/AddRuntimeDependency: # new in 1.65
22
+ Enabled: true
23
+ Gemspec/AttributeAssignment: # new in 1.77
24
+ Enabled: true
25
+ Gemspec/DeprecatedAttributeAssignment: # new in 1.30
26
+ Enabled: true
27
+ Gemspec/DevelopmentDependencies: # new in 1.44
28
+ Enabled: true
29
+ Gemspec/RequireMFA: # new in 1.23
30
+ Enabled: true
31
+ Layout/EmptyLinesAfterModuleInclusion: # new in 1.79
32
+ Enabled: true
33
+ Layout/LineContinuationLeadingSpace: # new in 1.31
34
+ Enabled: true
35
+ Layout/LineContinuationSpacing: # new in 1.31
36
+ Enabled: true
37
+ Layout/LineEndStringConcatenationIndentation: # new in 1.18
38
+ Enabled: true
39
+ Layout/SpaceBeforeBrackets: # new in 1.7
40
+ Enabled: true
41
+ Lint/AmbiguousAssignment: # new in 1.7
42
+ Enabled: true
43
+ Lint/AmbiguousOperatorPrecedence: # new in 1.21
44
+ Enabled: true
45
+ Lint/AmbiguousRange: # new in 1.19
46
+ Enabled: true
47
+ Lint/ArgumentMismatch: # new in 1.90
48
+ Enabled: true
49
+ Lint/ArrayLiteralInRegexp: # new in 1.71
50
+ Enabled: true
51
+ Lint/ConstantOverwrittenInRescue: # new in 1.31
52
+ Enabled: true
53
+ Lint/ConstantReassignment: # new in 1.70
54
+ Enabled: true
55
+ Lint/DataDefineOverride: # new in 1.85
56
+ Enabled: true
57
+ Lint/DeprecatedConstants: # new in 1.8
58
+ Enabled: true
59
+ Lint/DeprecatedReference: # new in 1.89
60
+ Enabled: true
61
+ Lint/DuplicateBranch: # new in 1.3
62
+ Enabled: true
63
+ Lint/DuplicateMagicComment: # new in 1.37
64
+ Enabled: true
65
+ Lint/DuplicateMatchPattern: # new in 1.50
66
+ Enabled: true
67
+ Lint/DuplicateRegexpCharacterClassElement: # new in 1.1
68
+ Enabled: true
69
+ Lint/DuplicateSetElement: # new in 1.67
70
+ Enabled: true
71
+ Lint/EmptyBlock: # new in 1.1
72
+ Enabled: true
73
+ Lint/EmptyClass: # new in 1.3
74
+ Enabled: true
75
+ Lint/EmptyInPattern: # new in 1.16
76
+ Enabled: true
77
+ Lint/HashNewWithKeywordArgumentsAsDefault: # new in 1.69
78
+ Enabled: true
79
+ Lint/IncompatibleIoSelectWithFiberScheduler: # new in 1.21
80
+ Enabled: true
81
+ Lint/ItWithoutArgumentsInBlock: # new in 1.59
82
+ Enabled: true
83
+ Lint/LambdaWithoutLiteralBlock: # new in 1.8
84
+ Enabled: true
85
+ Lint/LiteralAssignmentInCondition: # new in 1.58
86
+ Enabled: true
87
+ Lint/MisplacedMagicComment: # new in 1.91
88
+ Enabled: true
89
+ Lint/MixedCaseRange: # new in 1.53
90
+ Enabled: true
91
+ Lint/NameTypo: # new in 1.89
92
+ Enabled: true
93
+ Lint/NoReturnInBeginEndBlocks: # new in 1.2
94
+ Enabled: true
95
+ Lint/NonAtomicFileOperation: # new in 1.31
96
+ Enabled: true
97
+ Lint/NumberedParameterAssignment: # new in 1.9
98
+ Enabled: true
99
+ Lint/NumericOperationWithConstantResult: # new in 1.69
100
+ Enabled: true
101
+ Lint/OrAssignmentToConstant: # new in 1.9
102
+ Enabled: true
103
+ Lint/RedundantDirGlobSort: # new in 1.8
104
+ Enabled: true
105
+ Lint/RedundantRegexpQuantifiers: # new in 1.53
106
+ Enabled: true
107
+ Lint/RedundantTypeConversion: # new in 1.72
108
+ Enabled: true
109
+ Lint/RefinementImportMethods: # new in 1.27
110
+ Enabled: true
111
+ Lint/RequireRangeParentheses: # new in 1.32
112
+ Enabled: true
113
+ Lint/RequireRelativeSelfPath: # new in 1.22
114
+ Enabled: true
115
+ Lint/SharedMutableDefault: # new in 1.70
116
+ Enabled: true
117
+ Lint/SuperArgumentMismatch: # new in 1.90
118
+ Enabled: true
119
+ Lint/SuppressedExceptionInNumberConversion: # new in 1.72
120
+ Enabled: true
121
+ Lint/SymbolConversion: # new in 1.9
122
+ Enabled: true
123
+ Lint/ToEnumArguments: # new in 1.1
124
+ Enabled: true
125
+ Lint/TripleQuotes: # new in 1.9
126
+ Enabled: true
127
+ Lint/UnescapedBracketInRegexp: # new in 1.68
128
+ Enabled: true
129
+ Lint/UnexpectedBlockArity: # new in 1.5
130
+ Enabled: true
131
+ Lint/UnmodifiedReduceAccumulator: # new in 1.1
132
+ Enabled: true
133
+ Lint/UnreachablePatternBranch: # new in 1.85
134
+ Enabled: true
135
+ Lint/UselessConstantScoping: # new in 1.72
136
+ Enabled: true
137
+ Lint/UselessDefaultValueArgument: # new in 1.76
138
+ Enabled: true
139
+ Lint/UselessDefined: # new in 1.69
140
+ Enabled: true
141
+ Lint/UselessNumericOperation: # new in 1.66
142
+ Enabled: true
143
+ Lint/UselessOr: # new in 1.76
144
+ Enabled: true
145
+ Lint/UselessRescue: # new in 1.43
146
+ Enabled: true
147
+ Lint/UselessRuby2Keywords: # new in 1.23
148
+ Enabled: true
149
+ Metrics/CollectionLiteralLength: # new in 1.47
150
+ Enabled: true
151
+ Naming/BlockForwarding: # new in 1.24
152
+ Enabled: true
153
+ Naming/PredicateMethod: # new in 1.76
154
+ Enabled: true
155
+ Security/CompoundHash: # new in 1.28
156
+ Enabled: true
157
+ Security/IoMethods: # new in 1.22
158
+ Enabled: true
159
+ Style/AmbiguousEndlessMethodDefinition: # new in 1.68
160
+ Enabled: true
161
+ Style/ArgumentsForwarding: # new in 1.1
162
+ Enabled: true
163
+ Style/ArrayIntersect: # new in 1.40
164
+ Enabled: true
165
+ Style/ArrayIntersectWithSingleElement: # new in 1.81
166
+ Enabled: true
167
+ Style/BitwisePredicate: # new in 1.68
168
+ Enabled: true
169
+ Style/CollectionCompact: # new in 1.2
170
+ Enabled: true
171
+ Style/CollectionQuerying: # new in 1.77
172
+ Enabled: true
173
+ Style/CombinableDefined: # new in 1.68
174
+ Enabled: true
175
+ Style/ComparableBetween: # new in 1.74
176
+ Enabled: true
177
+ Style/ComparableClamp: # new in 1.44
178
+ Enabled: true
179
+ Style/ConcatArrayLiterals: # new in 1.41
180
+ Enabled: true
181
+ Style/DataInheritance: # new in 1.49
182
+ Enabled: true
183
+ Style/DigChain: # new in 1.69
184
+ Enabled: true
185
+ Style/DirEmpty: # new in 1.48
186
+ Enabled: true
187
+ Style/DirectiveScope: # new in 1.90
188
+ Enabled: true
189
+ Style/DocumentDynamicEvalDefinition: # new in 1.1
190
+ Enabled: true
191
+ Style/EmptyClassDefinition: # new in 1.84
192
+ Enabled: true
193
+ Style/EmptyHeredoc: # new in 1.32
194
+ Enabled: true
195
+ Style/EmptyStringInsideInterpolation: # new in 1.76
196
+ Enabled: true
197
+ Style/EndlessMethod: # new in 1.8
198
+ Enabled: true
199
+ Style/EnvHome: # new in 1.29
200
+ Enabled: true
201
+ Style/ExactRegexpMatch: # new in 1.51
202
+ Enabled: true
203
+ Style/FetchEnvVar: # new in 1.28
204
+ Enabled: true
205
+ Style/FileEmpty: # new in 1.48
206
+ Enabled: true
207
+ Style/FileNull: # new in 1.69
208
+ Enabled: true
209
+ Style/FileOpen: # new in 1.85
210
+ Enabled: true
211
+ Style/FileRead: # new in 1.24
212
+ Enabled: true
213
+ Style/FileTouch: # new in 1.69
214
+ Enabled: true
215
+ Style/FileWrite: # new in 1.24
216
+ Enabled: true
217
+ Style/HashConversion: # new in 1.10
218
+ Enabled: true
219
+ Style/HashExcept: # new in 1.7
220
+ Enabled: true
221
+ Style/HashFetchChain: # new in 1.75
222
+ Enabled: true
223
+ Style/HashSlice: # new in 1.71
224
+ Enabled: true
225
+ Style/IfWithBooleanLiteralBranches: # new in 1.9
226
+ Enabled: true
227
+ Style/InPatternThen: # new in 1.16
228
+ Enabled: true
229
+ Style/ItAssignment: # new in 1.70
230
+ Enabled: true
231
+ Style/ItBlockParameter: # new in 1.75
232
+ Enabled: true
233
+ Style/KeywordArgumentsMerging: # new in 1.68
234
+ Enabled: true
235
+ Style/MagicCommentFormat: # new in 1.35
236
+ Enabled: true
237
+ Style/MapCompactWithConditionalBlock: # new in 1.30
238
+ Enabled: true
239
+ Style/MapIntoArray: # new in 1.63
240
+ Enabled: true
241
+ Style/MapJoin: # new in 1.85
242
+ Enabled: true
243
+ Style/MapToHash: # new in 1.24
244
+ Enabled: true
245
+ Style/MapToSet: # new in 1.42
246
+ Enabled: true
247
+ Style/MinMaxComparison: # new in 1.42
248
+ Enabled: true
249
+ Style/ModuleMemberExistenceCheck: # new in 1.82
250
+ Enabled: true
251
+ Style/MultilineInPatternThen: # new in 1.16
252
+ Enabled: true
253
+ Style/NegatedIfElseCondition: # new in 1.2
254
+ Enabled: true
255
+ Style/NegativeArrayIndex: # new in 1.84
256
+ Enabled: true
257
+ Style/NestedFileDirname: # new in 1.26
258
+ Enabled: true
259
+ Style/NilLambda: # new in 1.3
260
+ Enabled: true
261
+ Style/NumberedParameters: # new in 1.22
262
+ Enabled: true
263
+ Style/NumberedParametersLimit: # new in 1.22
264
+ Enabled: true
265
+ Style/ObjectThen: # new in 1.28
266
+ Enabled: true
267
+ Style/OneClassPerFile: # new in 1.85
268
+ Enabled: true
269
+ Style/OpenStructUse: # new in 1.23
270
+ Enabled: true
271
+ Style/OperatorMethodCall: # new in 1.37
272
+ Enabled: true
273
+ Style/PartitionInsteadOfDoubleSelect: # new in 1.85
274
+ Enabled: true
275
+ Style/PredicateWithKind: # new in 1.85
276
+ Enabled: true
277
+ Style/QuotedSymbols: # new in 1.16
278
+ Enabled: true
279
+ Style/ReduceToHash: # new in 1.85
280
+ Enabled: true
281
+ Style/RedundantArgument: # new in 1.4
282
+ Enabled: true
283
+ Style/RedundantArrayConstructor: # new in 1.52
284
+ Enabled: true
285
+ Style/RedundantArrayFlatten: # new in 1.76
286
+ Enabled: true
287
+ Style/RedundantConstantBase: # new in 1.40
288
+ Enabled: true
289
+ Style/RedundantCurrentDirectoryInPath: # new in 1.53
290
+ Enabled: true
291
+ Style/RedundantDoubleSplatHashBraces: # new in 1.41
292
+ Enabled: true
293
+ Style/RedundantEach: # new in 1.38
294
+ Enabled: true
295
+ Style/RedundantFilterChain: # new in 1.52
296
+ Enabled: true
297
+ Style/RedundantFormat: # new in 1.72
298
+ Enabled: true
299
+ Style/RedundantHeredocDelimiterQuotes: # new in 1.45
300
+ Enabled: true
301
+ Style/RedundantInitialize: # new in 1.27
302
+ Enabled: true
303
+ Style/RedundantInterpolationUnfreeze: # new in 1.66
304
+ Enabled: true
305
+ Style/RedundantLineContinuation: # new in 1.49
306
+ Enabled: true
307
+ Style/RedundantMinMaxBy: # new in 1.85
308
+ Enabled: true
309
+ Style/RedundantRegexpArgument: # new in 1.53
310
+ Enabled: true
311
+ Style/RedundantRegexpConstructor: # new in 1.52
312
+ Enabled: true
313
+ Style/RedundantSelfAssignmentBranch: # new in 1.19
314
+ Enabled: true
315
+ Style/RedundantStringEscape: # new in 1.37
316
+ Enabled: true
317
+ Style/ReturnNilInPredicateMethodDefinition: # new in 1.53
318
+ Enabled: true
319
+ Style/ReverseFind: # new in 1.84
320
+ Enabled: true
321
+ Style/SafeNavigationChainLength: # new in 1.68
322
+ Enabled: true
323
+ Style/SelectByKind: # new in 1.85
324
+ Enabled: true
325
+ Style/SelectByRange: # new in 1.85
326
+ Enabled: true
327
+ Style/SelectByRegexp: # new in 1.22
328
+ Enabled: true
329
+ Style/SendWithLiteralMethodName: # new in 1.64
330
+ Enabled: true
331
+ Style/SingleLineDoEndBlock: # new in 1.57
332
+ Enabled: true
333
+ Style/StringChars: # new in 1.12
334
+ Enabled: true
335
+ Style/SuperArguments: # new in 1.64
336
+ Enabled: true
337
+ Style/SuperWithArgsParentheses: # new in 1.58
338
+ Enabled: true
339
+ Style/SwapValues: # new in 1.1
340
+ Enabled: true
341
+ Style/TallyMethod: # new in 1.85
342
+ Enabled: true
343
+ Style/TimeNow: # new in 1.90
344
+ Enabled: true
345
+ Style/YAMLFileRead: # new in 1.53
346
+ Enabled: true
347
+ RSpec/DiscardedMatcher: # new in 3.10
348
+ Enabled: true
349
+ RSpec/IncludeExamples: # new in 3.6
350
+ Enabled: true
351
+ RSpec/LeakyLocalVariable: # new in 3.8
352
+ Enabled: true
353
+ RSpec/MatchWithSimpleRegex: # new in 3.10
354
+ Enabled: true
355
+ RSpec/Output: # new in 3.9
356
+ Enabled: true
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,126 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config --auto-gen-only-exclude`
3
+ # on 2026-09-14 20:55:19 UTC using RuboCop version 1.91.0.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 7
10
+ # Configuration parameters: AllowedMethods.
11
+ # AllowedMethods: enums
12
+ Lint/ConstantDefinitionInBlock:
13
+ Exclude:
14
+ - 'spec/voids/custom_primary_key_spec.rb'
15
+
16
+ # Offense count: 4
17
+ # Configuration parameters: AllowRBSInlineAnnotation.
18
+ Lint/SelfAssignment:
19
+ Exclude:
20
+ - 'spec/voids/normalization_spec.rb'
21
+
22
+ # Offense count: 7
23
+ # Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max.
24
+ Metrics/AbcSize:
25
+ Exclude:
26
+ - 'lib/voids/base.rb'
27
+ - 'lib/voids/nested_attributes.rb'
28
+
29
+ # Offense count: 1
30
+ # Configuration parameters: CountComments, Max, CountAsOne, AllowedMethods, AllowedPatterns, inherit_mode.
31
+ # AllowedMethods: refine
32
+ Metrics/BlockLength:
33
+ Exclude:
34
+ - 'lib/voids/associations.rb'
35
+
36
+ # Offense count: 1
37
+ # Configuration parameters: CountComments, Max, CountAsOne.
38
+ Metrics/ClassLength:
39
+ Exclude:
40
+ - 'lib/voids/base.rb'
41
+
42
+ # Offense count: 6
43
+ # Configuration parameters: AllowedMethods, AllowedPatterns, Max.
44
+ Metrics/CyclomaticComplexity:
45
+ Exclude:
46
+ - 'lib/voids/base.rb'
47
+ - 'lib/voids/nested_attributes.rb'
48
+
49
+ # Offense count: 10
50
+ # Configuration parameters: CountComments, Max, CountAsOne, AllowedMethods, AllowedPatterns.
51
+ Metrics/MethodLength:
52
+ Exclude:
53
+ - 'lib/voids/associations.rb'
54
+ - 'lib/voids/base.rb'
55
+ - 'lib/voids/nested_attributes.rb'
56
+
57
+ # Offense count: 6
58
+ # Configuration parameters: AllowedMethods, AllowedPatterns, Max.
59
+ Metrics/PerceivedComplexity:
60
+ Exclude:
61
+ - 'lib/voids/base.rb'
62
+ - 'lib/voids/nested_attributes.rb'
63
+
64
+ # Offense count: 1
65
+ # Configuration parameters: Mode, AllowedMethods, AllowedPatterns, AllowBangMethods, WaywardPredicates.
66
+ # AllowedMethods: call
67
+ # WaywardPredicates: infinite?, nonzero?
68
+ Naming/PredicateMethod:
69
+ Exclude:
70
+ - 'spec/voids/nested_attributes_spec.rb'
71
+
72
+ # Offense count: 3
73
+ # Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros, UseSorbetSigs.
74
+ # NamePrefix: is_, has_, have_, does_
75
+ # ForbiddenPrefixes: is_, has_, have_, does_
76
+ # AllowedMethods: is_a?
77
+ # MethodDefinitionMacros: define_method, define_singleton_method
78
+ Naming/PredicatePrefix:
79
+ Exclude:
80
+ - 'spec/**/*'
81
+ - 'lib/voids/associations.rb'
82
+ - 'lib/voids/nested_attributes.rb'
83
+
84
+ # Offense count: 10
85
+ RSpec/BeforeAfterAll:
86
+ Exclude:
87
+ - '**/spec/spec_helper.rb'
88
+ - '**/spec/rails_helper.rb'
89
+ - '**/spec/support/**/*.rb'
90
+ - 'spec/voids/custom_primary_key_spec.rb'
91
+ - 'spec/voids/inherit_attributes_from_spec.rb'
92
+ - 'spec/voids/inherit_validations_from_spec.rb'
93
+
94
+ # Offense count: 7
95
+ # Configuration parameters: IgnoredMetadata.
96
+ RSpec/DescribeClass:
97
+ Exclude:
98
+ - '**/spec/features/**/*'
99
+ - '**/spec/requests/**/*'
100
+ - '**/spec/routing/**/*'
101
+ - '**/spec/system/**/*'
102
+ - '**/spec/views/**/*'
103
+ - 'spec/voids/attributes_extraction_spec.rb'
104
+ - 'spec/voids/custom_primary_key_spec.rb'
105
+ - 'spec/voids/dirty_tracking_spec.rb'
106
+ - 'spec/voids/i18n_spec.rb'
107
+ - 'spec/voids/id_tracking_spec.rb'
108
+ - 'spec/voids/inherit_attributes_from_spec.rb'
109
+ - 'spec/voids/inherit_validations_from_spec.rb'
110
+
111
+ # Offense count: 22
112
+ # Configuration parameters: AssignmentOnly.
113
+ RSpec/InstanceVariable:
114
+ Exclude:
115
+ - 'spec/voids/inherit_attributes_from_spec.rb'
116
+ - 'spec/voids/inherit_validations_from_spec.rb'
117
+
118
+ # Offense count: 7
119
+ RSpec/LeakyConstantDeclaration:
120
+ Exclude:
121
+ - 'spec/voids/custom_primary_key_spec.rb'
122
+
123
+ # Offense count: 7
124
+ RSpec/RemoveConst:
125
+ Exclude:
126
+ - 'spec/voids/custom_primary_key_spec.rb'
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [1.0.0] - 2026-01-13
4
+
5
+ - Initial release
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 Josh
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.