srl_ruby 0.4.12 → 0.4.13
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 +5 -331
- data/CHANGELOG.md +9 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -5
- data/lib/regex/abstract_method.rb +1 -1
- data/lib/regex/character.rb +2 -2
- data/lib/regex/match_option.rb +1 -1
- data/lib/srl_ruby/ast_builder.rb +1 -1
- data/lib/srl_ruby/version.rb +1 -1
- data/lib/srl_ruby.rb +4 -4
- data/spec/acceptance/srl_test_suite_spec.rb +1 -1
- data/spec/acceptance/support/rule_file_tokenizer.rb +0 -1
- data/srl_ruby.gemspec +2 -1
- metadata +6 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1aca92632a6d6009140d3df47adbacc96ec7237b665c8c7677192134b0dbffa
|
4
|
+
data.tar.gz: 4d9b6f2143a4d37b2092a179406aec2a5bfacff28e67383ce933a9f533cd1666
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f154f7efc63ee2130369cc1f95e7d02d9883f13f747001c612851e2cc7cda964062a908015f5e2a852912587f35443ccbaef7163667644acd7bbf67de4d8835b
|
7
|
+
data.tar.gz: 4cfe10c6fcabe4b04ebb12da4e91eef6e416539dc6f54a9e590b8e1458fae3be284ca1c5d2d58be0dfa9d22ec8cbd4720674d1eb637ee8c3861781e7490cdd6d
|
data/.rubocop.yml
CHANGED
@@ -2,12 +2,14 @@ AllCops:
|
|
2
2
|
Exclude:
|
3
3
|
- 'exp/**/*'
|
4
4
|
- 'demo/**/*'
|
5
|
+
NewCops: enable
|
6
|
+
SuggestExtensions: false
|
5
7
|
|
6
|
-
Gemspec/
|
7
|
-
|
8
|
+
Gemspec/DevelopmentDependencies:
|
9
|
+
EnforcedStyle: gemspec
|
8
10
|
|
9
11
|
Gemspec/RequireMFA: # new in 1.23
|
10
|
-
Enabled:
|
12
|
+
Enabled: true
|
11
13
|
|
12
14
|
Layout/ArgumentAlignment:
|
13
15
|
Enabled: false
|
@@ -47,136 +49,19 @@ Layout/HashAlignment:
|
|
47
49
|
Layout/IndentationWidth:
|
48
50
|
Enabled: false
|
49
51
|
|
50
|
-
Layout/IndentationConsistency:
|
51
|
-
Enabled: true
|
52
|
-
|
53
52
|
Layout/HeredocIndentation:
|
54
53
|
Enabled: false
|
55
54
|
|
56
|
-
Layout/LineEndStringConcatenationIndentation:
|
57
|
-
Enabled: true
|
58
|
-
|
59
|
-
Layout/MultilineHashBraceLayout:
|
60
|
-
Enabled: true
|
61
|
-
|
62
55
|
Layout/MultilineMethodCallBraceLayout:
|
63
56
|
Enabled: true
|
64
57
|
EnforcedStyle: same_line
|
65
58
|
|
66
|
-
Layout/SpaceAroundOperators:
|
67
|
-
Enabled: true
|
68
|
-
|
69
|
-
Layout/SpaceBeforeBrackets:
|
70
|
-
Enabled: true
|
71
|
-
|
72
|
-
Layout/SpaceInsideParens:
|
73
|
-
Enabled: true
|
74
|
-
|
75
|
-
Layout/IndentationStyle:
|
76
|
-
Enabled: true
|
77
|
-
|
78
|
-
Layout/SpaceAroundMethodCallOperator:
|
79
|
-
Enabled: true
|
80
|
-
|
81
|
-
Layout/TrailingEmptyLines:
|
82
|
-
Enabled: true
|
83
|
-
|
84
|
-
Layout/TrailingWhitespace:
|
85
|
-
Enabled: true
|
86
|
-
|
87
|
-
Lint/AmbiguousAssignment:
|
88
|
-
Enabled: true
|
89
|
-
|
90
|
-
Lint/AmbiguousOperatorPrecedence: # new in 1.21
|
91
|
-
Enabled: true
|
92
|
-
|
93
|
-
Lint/AmbiguousRange:
|
94
|
-
Enabled: true
|
95
|
-
|
96
|
-
Lint/DeprecatedConstants:
|
97
|
-
Enabled: true
|
98
|
-
|
99
|
-
Lint/DuplicateBranch:
|
100
|
-
Enabled: true
|
101
|
-
|
102
|
-
Lint/DuplicateRegexpCharacterClassElement:
|
103
|
-
Enabled: true
|
104
|
-
|
105
|
-
Lint/EmptyBlock:
|
106
|
-
Enabled: true
|
107
|
-
|
108
59
|
Lint/EmptyClass:
|
109
60
|
Enabled: false
|
110
61
|
|
111
|
-
Lint/EmptyInPattern:
|
112
|
-
Enabled: true
|
113
|
-
|
114
|
-
Lint/IncompatibleIoSelectWithFiberScheduler: # new in 1.21
|
115
|
-
Enabled: true
|
116
|
-
|
117
|
-
Lint/LambdaWithoutLiteralBlock:
|
118
|
-
Enabled: true
|
119
|
-
|
120
|
-
Lint/Loop:
|
121
|
-
Enabled: true
|
122
|
-
|
123
|
-
Lint/NoReturnInBeginEndBlocks:
|
124
|
-
Enabled: true
|
125
|
-
|
126
|
-
Lint/NumberedParameterAssignment:
|
127
|
-
Enabled: true
|
128
|
-
|
129
|
-
Lint/OrAssignmentToConstant:
|
130
|
-
Enabled: true
|
131
|
-
|
132
|
-
Lint/RaiseException:
|
133
|
-
Enabled: true
|
134
|
-
|
135
|
-
Lint/RedundantDirGlobSort:
|
136
|
-
Enabled: true
|
137
|
-
|
138
|
-
Lint/RefinementImportMethods: # new in 1.27
|
139
|
-
Enabled: true
|
140
|
-
|
141
|
-
Lint/RequireRelativeSelfPath: # new in 1.22
|
142
|
-
Enabled: true
|
143
|
-
|
144
|
-
Lint/RescueException:
|
145
|
-
Enabled: true
|
146
|
-
|
147
|
-
Lint/StructNewOverride:
|
148
|
-
Enabled: true
|
149
|
-
|
150
|
-
Lint/SymbolConversion:
|
151
|
-
Enabled: true
|
152
|
-
|
153
|
-
Lint/ToEnumArguments:
|
154
|
-
Enabled: true
|
155
|
-
|
156
|
-
Lint/TripleQuotes:
|
157
|
-
Enabled: true
|
158
|
-
|
159
|
-
Lint/UnexpectedBlockArity:
|
160
|
-
Enabled: true
|
161
|
-
|
162
|
-
Lint/UnmodifiedReduceAccumulator:
|
163
|
-
Enabled: true
|
164
|
-
|
165
|
-
Lint/UnusedMethodArgument:
|
166
|
-
Enabled: true
|
167
|
-
|
168
|
-
Lint/UselessAccessModifier:
|
169
|
-
Enabled: true
|
170
|
-
|
171
|
-
Lint/UselessRuby2Keywords: # new in 1.23
|
172
|
-
Enabled: true
|
173
|
-
|
174
62
|
Lint/Void:
|
175
63
|
Enabled: false
|
176
64
|
|
177
|
-
Lint/UselessAssignment:
|
178
|
-
Enabled: true
|
179
|
-
|
180
65
|
Metrics/AbcSize:
|
181
66
|
Enabled: false
|
182
67
|
|
@@ -216,15 +101,6 @@ Naming/ConstantName:
|
|
216
101
|
Naming/ClassAndModuleCamelCase:
|
217
102
|
Enabled: false
|
218
103
|
|
219
|
-
Naming/BlockForwarding: # new in 1.24
|
220
|
-
Enabled: true
|
221
|
-
|
222
|
-
Naming/BlockParameterName:
|
223
|
-
Enabled: true
|
224
|
-
|
225
|
-
Naming/InclusiveLanguage:
|
226
|
-
Enabled: true
|
227
|
-
|
228
104
|
Naming/MethodParameterName:
|
229
105
|
Enabled: false
|
230
106
|
|
@@ -234,18 +110,6 @@ Naming/MethodName:
|
|
234
110
|
Naming/VariableName:
|
235
111
|
Enabled: false
|
236
112
|
|
237
|
-
Security/CompoundHash: # new in 1.28
|
238
|
-
Enabled: true
|
239
|
-
|
240
|
-
Security/IoMethods: # new in 1.22
|
241
|
-
Enabled: true
|
242
|
-
|
243
|
-
Style/Alias:
|
244
|
-
Enabled: true
|
245
|
-
|
246
|
-
Style/ArgumentsForwarding:
|
247
|
-
Enabled: true
|
248
|
-
|
249
113
|
Style/AsciiComments:
|
250
114
|
Enabled: false
|
251
115
|
|
@@ -279,9 +143,6 @@ Style/CommentedKeyword:
|
|
279
143
|
Style/ConditionalAssignment:
|
280
144
|
Enabled: false
|
281
145
|
|
282
|
-
Style/DefWithParentheses:
|
283
|
-
Enabled: true
|
284
|
-
|
285
146
|
Style/Documentation:
|
286
147
|
Enabled: false
|
287
148
|
|
@@ -291,222 +152,35 @@ Style/DocumentDynamicEvalDefinition:
|
|
291
152
|
Style/ExpandPathArguments:
|
292
153
|
Enabled: false
|
293
154
|
|
294
|
-
Style/ExponentialNotation:
|
295
|
-
Enabled: true
|
296
|
-
|
297
|
-
Style/FetchEnvVar: # new in 1.28
|
298
|
-
Enabled: true
|
299
|
-
|
300
|
-
Style/FileRead: # new in 1.24
|
301
|
-
Enabled: true
|
302
|
-
|
303
|
-
Style/FileWrite: # new in 1.24
|
304
|
-
Enabled: true
|
305
|
-
|
306
155
|
Style/GuardClause:
|
307
156
|
Enabled: false
|
308
157
|
|
309
|
-
Style/HashEachMethods:
|
310
|
-
Enabled: true
|
311
|
-
|
312
|
-
Style/HashExcept:
|
313
|
-
Enabled: true
|
314
|
-
|
315
|
-
Style/HashTransformKeys:
|
316
|
-
Enabled: true
|
317
|
-
|
318
|
-
Style/HashTransformValues:
|
319
|
-
Enabled: true
|
320
|
-
|
321
158
|
Style/IfUnlessModifier:
|
322
159
|
Enabled: false
|
323
160
|
|
324
|
-
Style/InPatternThen:
|
325
|
-
Enabled: true
|
326
|
-
|
327
161
|
Style/InverseMethods:
|
328
162
|
Enabled: false
|
329
163
|
|
330
|
-
Style/MapToHash: # new in 1.24
|
331
|
-
Enabled: true
|
332
|
-
|
333
164
|
Style/MissingRespondToMissing:
|
334
165
|
Enabled: false
|
335
166
|
|
336
|
-
Style/MultilineInPatternThen:
|
337
|
-
Enabled: true
|
338
|
-
|
339
|
-
Style/NegatedIfElseCondition:
|
340
|
-
Enabled: true
|
341
|
-
|
342
|
-
Style/NestedFileDirname: # new in 1.26
|
343
|
-
Enabled: true
|
344
|
-
|
345
167
|
Style/Next:
|
346
168
|
Enabled: false
|
347
169
|
|
348
|
-
Style/NilLambda:
|
349
|
-
Enabled: true
|
350
|
-
|
351
|
-
Style/NumberedParameters: # new in 1.22
|
352
|
-
Enabled: true
|
353
|
-
|
354
|
-
Style/NumberedParametersLimit: # new in 1.22
|
355
|
-
Enabled: true
|
356
|
-
|
357
170
|
Style/NumericLiterals:
|
358
171
|
Enabled: false
|
359
172
|
|
360
|
-
Style/ObjectThen: # new in 1.28
|
361
|
-
Enabled: true
|
362
|
-
|
363
|
-
Style/OpenStructUse: # new in 1.23
|
364
|
-
Enabled: true
|
365
|
-
|
366
|
-
Style/QuotedSymbols:
|
367
|
-
Enabled: true
|
368
|
-
|
369
|
-
Style/RaiseArgs:
|
370
|
-
Enabled: true
|
371
|
-
|
372
|
-
Style/RedundantArgument:
|
373
|
-
Enabled: true
|
374
|
-
|
375
|
-
Style/RedundantInitialize: # new in 1.27
|
376
|
-
Enabled: true
|
377
|
-
|
378
|
-
Style/RedundantReturn:
|
379
|
-
Enabled: true
|
380
|
-
|
381
|
-
Style/RedundantSelf:
|
382
|
-
Enabled: true
|
383
|
-
|
384
|
-
Style/RedundantSelfAssignmentBranch:
|
385
|
-
Enabled: true
|
386
|
-
|
387
173
|
Style/RegexpLiteral:
|
388
174
|
Enabled: false
|
389
175
|
|
390
176
|
Style/PercentLiteralDelimiters:
|
391
177
|
Enabled: false
|
392
178
|
|
393
|
-
Style/SelectByRegexp: # new in 1.22
|
394
|
-
Enabled: true
|
395
|
-
|
396
179
|
Style/StderrPuts:
|
397
180
|
Enabled: false
|
398
181
|
|
399
|
-
Style/StringLiterals:
|
400
|
-
Enabled: true
|
401
|
-
|
402
|
-
Style/SwapValues:
|
403
|
-
Enabled: true
|
404
|
-
|
405
182
|
Style/TernaryParentheses:
|
406
183
|
Enabled: false
|
407
184
|
|
408
185
|
Style/UnlessElse:
|
409
186
|
Enabled: false
|
410
|
-
|
411
|
-
# Rubocop complains when it doesn't find an explicit setting for the following cops:
|
412
|
-
Layout/EmptyLinesAroundAttributeAccessor:
|
413
|
-
Enabled: true
|
414
|
-
|
415
|
-
Lint/BinaryOperatorWithIdenticalOperands:
|
416
|
-
Enabled: true
|
417
|
-
|
418
|
-
Lint/DeprecatedOpenSSLConstant:
|
419
|
-
Enabled: true
|
420
|
-
|
421
|
-
Lint/DuplicateElsifCondition:
|
422
|
-
Enabled: true
|
423
|
-
|
424
|
-
Lint/DuplicateRescueException:
|
425
|
-
Enabled: true
|
426
|
-
|
427
|
-
Lint/EmptyConditionalBody:
|
428
|
-
Enabled: true
|
429
|
-
|
430
|
-
Lint/FloatComparison:
|
431
|
-
Enabled: true
|
432
|
-
|
433
|
-
Lint/MissingSuper:
|
434
|
-
Enabled: true
|
435
|
-
|
436
|
-
Lint/MixedRegexpCaptureTypes:
|
437
|
-
Enabled: true
|
438
|
-
|
439
|
-
Lint/OutOfRangeRegexpRef:
|
440
|
-
Enabled: true
|
441
|
-
|
442
|
-
Lint/SelfAssignment:
|
443
|
-
Enabled: true
|
444
|
-
|
445
|
-
Lint/TopLevelReturnWithArgument:
|
446
|
-
Enabled: true
|
447
|
-
|
448
|
-
Lint/UnreachableLoop:
|
449
|
-
Enabled: true
|
450
|
-
|
451
|
-
Style/AccessorGrouping:
|
452
|
-
Enabled: true
|
453
|
-
|
454
|
-
Style/ArrayCoercion:
|
455
|
-
Enabled: true
|
456
|
-
|
457
|
-
Style/BisectedAttrAccessor:
|
458
|
-
Enabled: true
|
459
|
-
|
460
|
-
Style/CaseLikeIf:
|
461
|
-
Enabled: true
|
462
|
-
|
463
|
-
Style/EndlessMethod:
|
464
|
-
Enabled: true
|
465
|
-
|
466
|
-
Style/ExplicitBlockArgument:
|
467
|
-
Enabled: true
|
468
|
-
|
469
|
-
Style/GlobalStdStream:
|
470
|
-
Enabled: true
|
471
|
-
|
472
|
-
Style/HashAsLastArrayItem:
|
473
|
-
Enabled: true
|
474
|
-
|
475
|
-
Style/HashConversion:
|
476
|
-
Enabled: true
|
477
|
-
|
478
|
-
Style/HashLikeCase:
|
479
|
-
Enabled: true
|
480
|
-
|
481
|
-
Style/IfWithBooleanLiteralBranches:
|
482
|
-
Enabled: true
|
483
|
-
|
484
|
-
Style/OptionalBooleanParameter:
|
485
|
-
Enabled: true
|
486
|
-
|
487
|
-
Style/RedundantAssignment:
|
488
|
-
Enabled: true
|
489
|
-
|
490
|
-
Style/RedundantFetchBlock:
|
491
|
-
Enabled: true
|
492
|
-
|
493
|
-
Style/RedundantFileExtensionInRequire:
|
494
|
-
Enabled: true
|
495
|
-
|
496
|
-
Style/RedundantRegexpCharacterClass:
|
497
|
-
Enabled: true
|
498
|
-
|
499
|
-
Style/RedundantRegexpEscape:
|
500
|
-
Enabled: true
|
501
|
-
|
502
|
-
Style/SingleArgumentDig:
|
503
|
-
Enabled: true
|
504
|
-
|
505
|
-
Style/SlicingWithRange:
|
506
|
-
Enabled: true
|
507
|
-
|
508
|
-
Style/StringChars:
|
509
|
-
Enabled: true
|
510
|
-
|
511
|
-
Style/StringConcatenation:
|
512
|
-
Enabled: true
|
data/CHANGELOG.md
CHANGED
data/LICENSE.txt
CHANGED
@@ -5,7 +5,7 @@ the 'srl_test' directory, which is subject to its own license.
|
|
5
5
|
|
6
6
|
The MIT License (MIT)
|
7
7
|
|
8
|
-
Copyright (c) 2018-
|
8
|
+
Copyright (c) 2018-2025 Dimitri Geshef
|
9
9
|
|
10
10
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
11
11
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
@@ -405,8 +405,4 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/famish
|
|
405
405
|
|
406
406
|
## License
|
407
407
|
|
408
|
-
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
409
|
-
|
410
|
-
## Code of Conduct
|
411
|
-
|
412
|
-
Everyone interacting in the SrlRuby project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/srl_ruby/blob/master/CODE_OF_CONDUCT.md).
|
408
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
@@ -17,7 +17,7 @@ module AbstractMethod
|
|
17
17
|
# end
|
18
18
|
def abstract_method
|
19
19
|
# Determine the short class name of self
|
20
|
-
className = self.class.name.split(
|
20
|
+
className = self.class.name.split('::').last
|
21
21
|
|
22
22
|
# Retrieve the top text line of the call stack
|
23
23
|
top_line = caller(1..1)
|
data/lib/regex/character.rb
CHANGED
@@ -93,7 +93,7 @@ module Regex # This module is used as a namespace
|
|
93
93
|
aChar.ord
|
94
94
|
end
|
95
95
|
|
96
|
-
#
|
96
|
+
# Conversion method that returns the codepoint for the given escape
|
97
97
|
# sequence (a String).
|
98
98
|
# Recognized escaped characters are: \a (alarm, 0x07), \n (newline, 0xA),
|
99
99
|
# \r (carriage return, 0xD), \t (tab, 0x9), \e (escape, 0x1B), \f (form feed,
|
@@ -104,7 +104,7 @@ module Regex # This module is used as a namespace
|
|
104
104
|
# Example:
|
105
105
|
# RegAn::Character::esc2codepoint('\n') # Returns: 0xd
|
106
106
|
def self.esc2codepoint(esc_seq)
|
107
|
-
msg = "Escape sequence #{esc_seq} does not begin with a backslash (
|
107
|
+
msg = "Escape sequence #{esc_seq} does not begin with a backslash (\\)."
|
108
108
|
raise StandardError, msg unless esc_seq[0] == '\\'
|
109
109
|
|
110
110
|
(esc_seq.length == 2) ? digram2codepoint(esc_seq) : esc_number2codepoint(esc_seq)
|
data/lib/regex/match_option.rb
CHANGED
@@ -35,7 +35,7 @@ module Regex # This module is used as a namespace
|
|
35
35
|
return true if object_id == other.object_id
|
36
36
|
|
37
37
|
if other.kind_of?(MatchOption)
|
38
|
-
isEqual = (
|
38
|
+
isEqual = (flags == other.flags) && (child == other.child)
|
39
39
|
else
|
40
40
|
isEqual = false
|
41
41
|
end
|
data/lib/srl_ruby/ast_builder.rb
CHANGED
data/lib/srl_ruby/version.rb
CHANGED
data/lib/srl_ruby.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative '
|
4
|
-
require_relative '
|
5
|
-
require_relative '
|
6
|
-
require_relative '
|
3
|
+
require_relative 'srl_ruby/version'
|
4
|
+
require_relative 'srl_ruby/tokenizer'
|
5
|
+
require_relative 'srl_ruby/grammar'
|
6
|
+
require_relative 'srl_ruby/ast_builder'
|
7
7
|
|
8
8
|
module SrlRuby
|
9
9
|
# Compile the SRL expression in given filename into a Regexp object.
|
data/srl_ruby.gemspec
CHANGED
@@ -65,7 +65,7 @@ SUMMARY
|
|
65
65
|
spec.require_paths = ['lib']
|
66
66
|
PkgExtending.pkg_files(spec)
|
67
67
|
PkgExtending.pkg_documentation(spec)
|
68
|
-
spec.required_ruby_version = '>= 2.
|
68
|
+
spec.required_ruby_version = '>= 3.2.0'
|
69
69
|
|
70
70
|
# Runtime dependencies
|
71
71
|
spec.add_dependency 'rley', '~> 0.8.11'
|
@@ -75,4 +75,5 @@ SUMMARY
|
|
75
75
|
spec.add_development_dependency 'cucumber', '>= 3.1.2'
|
76
76
|
spec.add_development_dependency 'rake', '>= 12.0'
|
77
77
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
78
|
+
spec.metadata = { 'rubygems_mfa_required' => 'true' }
|
78
79
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: srl_ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dimitri Geshef
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-22 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: rley
|
@@ -189,8 +188,8 @@ files:
|
|
189
188
|
homepage: https://github.com/famished-tiger/SRL-Ruby
|
190
189
|
licenses:
|
191
190
|
- MIT
|
192
|
-
metadata:
|
193
|
-
|
191
|
+
metadata:
|
192
|
+
rubygems_mfa_required: 'true'
|
194
193
|
rdoc_options:
|
195
194
|
- --charset=UTF-8 --exclude="examples|spec"
|
196
195
|
require_paths:
|
@@ -199,15 +198,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
199
198
|
requirements:
|
200
199
|
- - ">="
|
201
200
|
- !ruby/object:Gem::Version
|
202
|
-
version: 2.
|
201
|
+
version: 3.2.0
|
203
202
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
204
203
|
requirements:
|
205
204
|
- - ">="
|
206
205
|
- !ruby/object:Gem::Version
|
207
206
|
version: '0'
|
208
207
|
requirements: []
|
209
|
-
rubygems_version: 3.
|
210
|
-
signing_key:
|
208
|
+
rubygems_version: 3.6.2
|
211
209
|
specification_version: 4
|
212
210
|
summary: A parser for the [Simple Regex Language](https://simple-regex.com/). It translates
|
213
211
|
patterns expressed in SRL into plain Ruby Regexp objects or in regex literals. Use
|