regexp_parser 2.1.1 → 2.9.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 +4 -4
- data/Gemfile +6 -5
- data/LICENSE +1 -1
- data/Rakefile +6 -70
- data/lib/regexp_parser/error.rb +1 -1
- data/lib/regexp_parser/expression/base.rb +76 -0
- data/lib/regexp_parser/expression/classes/alternation.rb +1 -1
- data/lib/regexp_parser/expression/classes/anchor.rb +0 -2
- data/lib/regexp_parser/expression/classes/{backref.rb → backreference.rb} +18 -3
- data/lib/regexp_parser/expression/classes/{set → character_set}/range.rb +2 -7
- data/lib/regexp_parser/expression/classes/{set.rb → character_set.rb} +4 -8
- data/lib/regexp_parser/expression/classes/{type.rb → character_type.rb} +0 -2
- data/lib/regexp_parser/expression/classes/conditional.rb +2 -6
- data/lib/regexp_parser/expression/classes/{escape.rb → escape_sequence.rb} +15 -7
- data/lib/regexp_parser/expression/classes/free_space.rb +4 -4
- data/lib/regexp_parser/expression/classes/group.rb +10 -22
- data/lib/regexp_parser/expression/classes/keep.rb +2 -0
- data/lib/regexp_parser/expression/classes/literal.rb +1 -5
- data/lib/regexp_parser/expression/classes/posix_class.rb +5 -5
- data/lib/regexp_parser/expression/classes/root.rb +3 -6
- data/lib/regexp_parser/expression/classes/{property.rb → unicode_property.rb} +10 -11
- data/lib/regexp_parser/expression/methods/construct.rb +41 -0
- data/lib/regexp_parser/expression/methods/human_name.rb +43 -0
- data/lib/regexp_parser/expression/methods/match_length.rb +9 -5
- data/lib/regexp_parser/expression/methods/negative.rb +20 -0
- data/lib/regexp_parser/expression/methods/parts.rb +23 -0
- data/lib/regexp_parser/expression/methods/printing.rb +26 -0
- data/lib/regexp_parser/expression/methods/strfregexp.rb +1 -1
- data/lib/regexp_parser/expression/methods/tests.rb +47 -1
- data/lib/regexp_parser/expression/methods/traverse.rb +35 -19
- data/lib/regexp_parser/expression/quantifier.rb +55 -24
- data/lib/regexp_parser/expression/sequence.rb +11 -31
- data/lib/regexp_parser/expression/sequence_operation.rb +4 -9
- data/lib/regexp_parser/expression/shared.rb +111 -0
- data/lib/regexp_parser/expression/subexpression.rb +26 -18
- data/lib/regexp_parser/expression.rb +37 -155
- data/lib/regexp_parser/lexer.rb +81 -39
- data/lib/regexp_parser/parser.rb +135 -173
- data/lib/regexp_parser/scanner/errors/premature_end_error.rb +8 -0
- data/lib/regexp_parser/scanner/errors/scanner_error.rb +6 -0
- data/lib/regexp_parser/scanner/errors/validation_error.rb +63 -0
- data/lib/regexp_parser/scanner/properties/long.csv +651 -0
- data/lib/regexp_parser/scanner/properties/short.csv +249 -0
- data/lib/regexp_parser/scanner/property.rl +2 -2
- data/lib/regexp_parser/scanner/scanner.rl +127 -185
- data/lib/regexp_parser/scanner.rb +1185 -1402
- data/lib/regexp_parser/syntax/any.rb +2 -7
- data/lib/regexp_parser/syntax/base.rb +91 -66
- data/lib/regexp_parser/syntax/token/anchor.rb +15 -0
- data/lib/regexp_parser/syntax/{tokens → token}/assertion.rb +2 -2
- data/lib/regexp_parser/syntax/token/backreference.rb +33 -0
- data/lib/regexp_parser/syntax/token/character_set.rb +16 -0
- data/lib/regexp_parser/syntax/{tokens → token}/character_type.rb +3 -3
- data/lib/regexp_parser/syntax/{tokens → token}/conditional.rb +3 -3
- data/lib/regexp_parser/syntax/token/escape.rb +33 -0
- data/lib/regexp_parser/syntax/{tokens → token}/group.rb +7 -7
- data/lib/regexp_parser/syntax/{tokens → token}/keep.rb +1 -1
- data/lib/regexp_parser/syntax/token/meta.rb +20 -0
- data/lib/regexp_parser/syntax/{tokens → token}/posix_class.rb +3 -3
- data/lib/regexp_parser/syntax/token/quantifier.rb +35 -0
- data/lib/regexp_parser/syntax/token/unicode_property.rb +751 -0
- data/lib/regexp_parser/syntax/token/virtual.rb +11 -0
- data/lib/regexp_parser/syntax/token.rb +45 -0
- data/lib/regexp_parser/syntax/version_lookup.rb +17 -34
- data/lib/regexp_parser/syntax/versions/1.8.6.rb +13 -20
- data/lib/regexp_parser/syntax/versions/1.9.1.rb +10 -17
- data/lib/regexp_parser/syntax/versions/1.9.3.rb +3 -10
- data/lib/regexp_parser/syntax/versions/2.0.0.rb +8 -15
- data/lib/regexp_parser/syntax/versions/2.2.0.rb +3 -9
- data/lib/regexp_parser/syntax/versions/2.3.0.rb +3 -9
- data/lib/regexp_parser/syntax/versions/2.4.0.rb +3 -9
- data/lib/regexp_parser/syntax/versions/2.4.1.rb +2 -8
- data/lib/regexp_parser/syntax/versions/2.5.0.rb +3 -9
- data/lib/regexp_parser/syntax/versions/2.6.0.rb +3 -9
- data/lib/regexp_parser/syntax/versions/2.6.2.rb +3 -9
- data/lib/regexp_parser/syntax/versions/2.6.3.rb +3 -9
- data/lib/regexp_parser/syntax/versions/3.1.0.rb +4 -0
- data/lib/regexp_parser/syntax/versions/3.2.0.rb +4 -0
- data/lib/regexp_parser/syntax/versions.rb +4 -2
- data/lib/regexp_parser/syntax.rb +2 -2
- data/lib/regexp_parser/token.rb +9 -20
- data/lib/regexp_parser/version.rb +1 -1
- data/lib/regexp_parser.rb +6 -8
- data/regexp_parser.gemspec +20 -22
- metadata +49 -171
- data/CHANGELOG.md +0 -494
- data/README.md +0 -479
- data/lib/regexp_parser/scanner/properties/long.yml +0 -594
- data/lib/regexp_parser/scanner/properties/short.yml +0 -237
- data/lib/regexp_parser/syntax/tokens/anchor.rb +0 -15
- data/lib/regexp_parser/syntax/tokens/backref.rb +0 -24
- data/lib/regexp_parser/syntax/tokens/character_set.rb +0 -13
- data/lib/regexp_parser/syntax/tokens/escape.rb +0 -30
- data/lib/regexp_parser/syntax/tokens/meta.rb +0 -13
- data/lib/regexp_parser/syntax/tokens/quantifier.rb +0 -35
- data/lib/regexp_parser/syntax/tokens/unicode_property.rb +0 -675
- data/lib/regexp_parser/syntax/tokens.rb +0 -45
- data/spec/expression/base_spec.rb +0 -104
- data/spec/expression/clone_spec.rb +0 -152
- data/spec/expression/conditional_spec.rb +0 -89
- data/spec/expression/free_space_spec.rb +0 -27
- data/spec/expression/methods/match_length_spec.rb +0 -161
- data/spec/expression/methods/match_spec.rb +0 -25
- data/spec/expression/methods/strfregexp_spec.rb +0 -224
- data/spec/expression/methods/tests_spec.rb +0 -99
- data/spec/expression/methods/traverse_spec.rb +0 -161
- data/spec/expression/options_spec.rb +0 -128
- data/spec/expression/subexpression_spec.rb +0 -50
- data/spec/expression/to_h_spec.rb +0 -26
- data/spec/expression/to_s_spec.rb +0 -108
- data/spec/lexer/all_spec.rb +0 -22
- data/spec/lexer/conditionals_spec.rb +0 -53
- data/spec/lexer/delimiters_spec.rb +0 -68
- data/spec/lexer/escapes_spec.rb +0 -14
- data/spec/lexer/keep_spec.rb +0 -10
- data/spec/lexer/literals_spec.rb +0 -64
- data/spec/lexer/nesting_spec.rb +0 -99
- data/spec/lexer/refcalls_spec.rb +0 -60
- data/spec/parser/all_spec.rb +0 -43
- data/spec/parser/alternation_spec.rb +0 -88
- data/spec/parser/anchors_spec.rb +0 -17
- data/spec/parser/conditionals_spec.rb +0 -179
- data/spec/parser/errors_spec.rb +0 -30
- data/spec/parser/escapes_spec.rb +0 -121
- data/spec/parser/free_space_spec.rb +0 -130
- data/spec/parser/groups_spec.rb +0 -108
- data/spec/parser/keep_spec.rb +0 -6
- data/spec/parser/options_spec.rb +0 -28
- data/spec/parser/posix_classes_spec.rb +0 -8
- data/spec/parser/properties_spec.rb +0 -115
- data/spec/parser/quantifiers_spec.rb +0 -68
- data/spec/parser/refcalls_spec.rb +0 -117
- data/spec/parser/set/intersections_spec.rb +0 -127
- data/spec/parser/set/ranges_spec.rb +0 -111
- data/spec/parser/sets_spec.rb +0 -178
- data/spec/parser/types_spec.rb +0 -18
- data/spec/scanner/all_spec.rb +0 -18
- data/spec/scanner/anchors_spec.rb +0 -21
- data/spec/scanner/conditionals_spec.rb +0 -128
- data/spec/scanner/delimiters_spec.rb +0 -52
- data/spec/scanner/errors_spec.rb +0 -67
- data/spec/scanner/escapes_spec.rb +0 -64
- data/spec/scanner/free_space_spec.rb +0 -165
- data/spec/scanner/groups_spec.rb +0 -61
- data/spec/scanner/keep_spec.rb +0 -10
- data/spec/scanner/literals_spec.rb +0 -39
- data/spec/scanner/meta_spec.rb +0 -18
- data/spec/scanner/options_spec.rb +0 -36
- data/spec/scanner/properties_spec.rb +0 -64
- data/spec/scanner/quantifiers_spec.rb +0 -25
- data/spec/scanner/refcalls_spec.rb +0 -55
- data/spec/scanner/sets_spec.rb +0 -151
- data/spec/scanner/types_spec.rb +0 -14
- data/spec/spec_helper.rb +0 -16
- data/spec/support/runner.rb +0 -42
- data/spec/support/shared_examples.rb +0 -77
- data/spec/support/warning_extractor.rb +0 -60
- data/spec/syntax/syntax_spec.rb +0 -48
- data/spec/syntax/syntax_token_map_spec.rb +0 -23
- data/spec/syntax/versions/1.8.6_spec.rb +0 -17
- data/spec/syntax/versions/1.9.1_spec.rb +0 -10
- data/spec/syntax/versions/1.9.3_spec.rb +0 -9
- data/spec/syntax/versions/2.0.0_spec.rb +0 -13
- data/spec/syntax/versions/2.2.0_spec.rb +0 -9
- data/spec/syntax/versions/aliases_spec.rb +0 -37
- data/spec/token/token_spec.rb +0 -85
- /data/lib/regexp_parser/expression/classes/{set → character_set}/intersection.rb +0 -0
metadata
CHANGED
|
@@ -1,81 +1,92 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: regexp_parser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.9.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ammar Ali
|
|
8
|
+
- Janosch Müller
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date:
|
|
12
|
+
date: 2024-05-15 00:00:00.000000000 Z
|
|
12
13
|
dependencies: []
|
|
13
14
|
description: A library for tokenizing, lexing, and parsing Ruby regular expressions.
|
|
14
15
|
email:
|
|
15
16
|
- ammarabuali@gmail.com
|
|
17
|
+
- janosch84@gmail.com
|
|
16
18
|
executables: []
|
|
17
19
|
extensions: []
|
|
18
20
|
extra_rdoc_files: []
|
|
19
21
|
files:
|
|
20
|
-
- CHANGELOG.md
|
|
21
22
|
- Gemfile
|
|
22
23
|
- LICENSE
|
|
23
|
-
- README.md
|
|
24
24
|
- Rakefile
|
|
25
25
|
- lib/regexp_parser.rb
|
|
26
26
|
- lib/regexp_parser/error.rb
|
|
27
27
|
- lib/regexp_parser/expression.rb
|
|
28
|
+
- lib/regexp_parser/expression/base.rb
|
|
28
29
|
- lib/regexp_parser/expression/classes/alternation.rb
|
|
29
30
|
- lib/regexp_parser/expression/classes/anchor.rb
|
|
30
|
-
- lib/regexp_parser/expression/classes/
|
|
31
|
+
- lib/regexp_parser/expression/classes/backreference.rb
|
|
32
|
+
- lib/regexp_parser/expression/classes/character_set.rb
|
|
33
|
+
- lib/regexp_parser/expression/classes/character_set/intersection.rb
|
|
34
|
+
- lib/regexp_parser/expression/classes/character_set/range.rb
|
|
35
|
+
- lib/regexp_parser/expression/classes/character_type.rb
|
|
31
36
|
- lib/regexp_parser/expression/classes/conditional.rb
|
|
32
|
-
- lib/regexp_parser/expression/classes/
|
|
37
|
+
- lib/regexp_parser/expression/classes/escape_sequence.rb
|
|
33
38
|
- lib/regexp_parser/expression/classes/free_space.rb
|
|
34
39
|
- lib/regexp_parser/expression/classes/group.rb
|
|
35
40
|
- lib/regexp_parser/expression/classes/keep.rb
|
|
36
41
|
- lib/regexp_parser/expression/classes/literal.rb
|
|
37
42
|
- lib/regexp_parser/expression/classes/posix_class.rb
|
|
38
|
-
- lib/regexp_parser/expression/classes/property.rb
|
|
39
43
|
- lib/regexp_parser/expression/classes/root.rb
|
|
40
|
-
- lib/regexp_parser/expression/classes/
|
|
41
|
-
- lib/regexp_parser/expression/
|
|
42
|
-
- lib/regexp_parser/expression/
|
|
43
|
-
- lib/regexp_parser/expression/classes/type.rb
|
|
44
|
+
- lib/regexp_parser/expression/classes/unicode_property.rb
|
|
45
|
+
- lib/regexp_parser/expression/methods/construct.rb
|
|
46
|
+
- lib/regexp_parser/expression/methods/human_name.rb
|
|
44
47
|
- lib/regexp_parser/expression/methods/match.rb
|
|
45
48
|
- lib/regexp_parser/expression/methods/match_length.rb
|
|
49
|
+
- lib/regexp_parser/expression/methods/negative.rb
|
|
46
50
|
- lib/regexp_parser/expression/methods/options.rb
|
|
51
|
+
- lib/regexp_parser/expression/methods/parts.rb
|
|
52
|
+
- lib/regexp_parser/expression/methods/printing.rb
|
|
47
53
|
- lib/regexp_parser/expression/methods/strfregexp.rb
|
|
48
54
|
- lib/regexp_parser/expression/methods/tests.rb
|
|
49
55
|
- lib/regexp_parser/expression/methods/traverse.rb
|
|
50
56
|
- lib/regexp_parser/expression/quantifier.rb
|
|
51
57
|
- lib/regexp_parser/expression/sequence.rb
|
|
52
58
|
- lib/regexp_parser/expression/sequence_operation.rb
|
|
59
|
+
- lib/regexp_parser/expression/shared.rb
|
|
53
60
|
- lib/regexp_parser/expression/subexpression.rb
|
|
54
61
|
- lib/regexp_parser/lexer.rb
|
|
55
62
|
- lib/regexp_parser/parser.rb
|
|
56
63
|
- lib/regexp_parser/scanner.rb
|
|
57
64
|
- lib/regexp_parser/scanner/char_type.rl
|
|
58
|
-
- lib/regexp_parser/scanner/
|
|
59
|
-
- lib/regexp_parser/scanner/
|
|
65
|
+
- lib/regexp_parser/scanner/errors/premature_end_error.rb
|
|
66
|
+
- lib/regexp_parser/scanner/errors/scanner_error.rb
|
|
67
|
+
- lib/regexp_parser/scanner/errors/validation_error.rb
|
|
68
|
+
- lib/regexp_parser/scanner/properties/long.csv
|
|
69
|
+
- lib/regexp_parser/scanner/properties/short.csv
|
|
60
70
|
- lib/regexp_parser/scanner/property.rl
|
|
61
71
|
- lib/regexp_parser/scanner/scanner.rl
|
|
62
72
|
- lib/regexp_parser/syntax.rb
|
|
63
73
|
- lib/regexp_parser/syntax/any.rb
|
|
64
74
|
- lib/regexp_parser/syntax/base.rb
|
|
65
|
-
- lib/regexp_parser/syntax/
|
|
66
|
-
- lib/regexp_parser/syntax/
|
|
67
|
-
- lib/regexp_parser/syntax/
|
|
68
|
-
- lib/regexp_parser/syntax/
|
|
69
|
-
- lib/regexp_parser/syntax/
|
|
70
|
-
- lib/regexp_parser/syntax/
|
|
71
|
-
- lib/regexp_parser/syntax/
|
|
72
|
-
- lib/regexp_parser/syntax/
|
|
73
|
-
- lib/regexp_parser/syntax/
|
|
74
|
-
- lib/regexp_parser/syntax/
|
|
75
|
-
- lib/regexp_parser/syntax/
|
|
76
|
-
- lib/regexp_parser/syntax/
|
|
77
|
-
- lib/regexp_parser/syntax/
|
|
78
|
-
- lib/regexp_parser/syntax/
|
|
75
|
+
- lib/regexp_parser/syntax/token.rb
|
|
76
|
+
- lib/regexp_parser/syntax/token/anchor.rb
|
|
77
|
+
- lib/regexp_parser/syntax/token/assertion.rb
|
|
78
|
+
- lib/regexp_parser/syntax/token/backreference.rb
|
|
79
|
+
- lib/regexp_parser/syntax/token/character_set.rb
|
|
80
|
+
- lib/regexp_parser/syntax/token/character_type.rb
|
|
81
|
+
- lib/regexp_parser/syntax/token/conditional.rb
|
|
82
|
+
- lib/regexp_parser/syntax/token/escape.rb
|
|
83
|
+
- lib/regexp_parser/syntax/token/group.rb
|
|
84
|
+
- lib/regexp_parser/syntax/token/keep.rb
|
|
85
|
+
- lib/regexp_parser/syntax/token/meta.rb
|
|
86
|
+
- lib/regexp_parser/syntax/token/posix_class.rb
|
|
87
|
+
- lib/regexp_parser/syntax/token/quantifier.rb
|
|
88
|
+
- lib/regexp_parser/syntax/token/unicode_property.rb
|
|
89
|
+
- lib/regexp_parser/syntax/token/virtual.rb
|
|
79
90
|
- lib/regexp_parser/syntax/version_lookup.rb
|
|
80
91
|
- lib/regexp_parser/syntax/versions.rb
|
|
81
92
|
- lib/regexp_parser/syntax/versions/1.8.6.rb
|
|
@@ -90,87 +101,23 @@ files:
|
|
|
90
101
|
- lib/regexp_parser/syntax/versions/2.6.0.rb
|
|
91
102
|
- lib/regexp_parser/syntax/versions/2.6.2.rb
|
|
92
103
|
- lib/regexp_parser/syntax/versions/2.6.3.rb
|
|
104
|
+
- lib/regexp_parser/syntax/versions/3.1.0.rb
|
|
105
|
+
- lib/regexp_parser/syntax/versions/3.2.0.rb
|
|
93
106
|
- lib/regexp_parser/token.rb
|
|
94
107
|
- lib/regexp_parser/version.rb
|
|
95
108
|
- regexp_parser.gemspec
|
|
96
|
-
- spec/expression/base_spec.rb
|
|
97
|
-
- spec/expression/clone_spec.rb
|
|
98
|
-
- spec/expression/conditional_spec.rb
|
|
99
|
-
- spec/expression/free_space_spec.rb
|
|
100
|
-
- spec/expression/methods/match_length_spec.rb
|
|
101
|
-
- spec/expression/methods/match_spec.rb
|
|
102
|
-
- spec/expression/methods/strfregexp_spec.rb
|
|
103
|
-
- spec/expression/methods/tests_spec.rb
|
|
104
|
-
- spec/expression/methods/traverse_spec.rb
|
|
105
|
-
- spec/expression/options_spec.rb
|
|
106
|
-
- spec/expression/subexpression_spec.rb
|
|
107
|
-
- spec/expression/to_h_spec.rb
|
|
108
|
-
- spec/expression/to_s_spec.rb
|
|
109
|
-
- spec/lexer/all_spec.rb
|
|
110
|
-
- spec/lexer/conditionals_spec.rb
|
|
111
|
-
- spec/lexer/delimiters_spec.rb
|
|
112
|
-
- spec/lexer/escapes_spec.rb
|
|
113
|
-
- spec/lexer/keep_spec.rb
|
|
114
|
-
- spec/lexer/literals_spec.rb
|
|
115
|
-
- spec/lexer/nesting_spec.rb
|
|
116
|
-
- spec/lexer/refcalls_spec.rb
|
|
117
|
-
- spec/parser/all_spec.rb
|
|
118
|
-
- spec/parser/alternation_spec.rb
|
|
119
|
-
- spec/parser/anchors_spec.rb
|
|
120
|
-
- spec/parser/conditionals_spec.rb
|
|
121
|
-
- spec/parser/errors_spec.rb
|
|
122
|
-
- spec/parser/escapes_spec.rb
|
|
123
|
-
- spec/parser/free_space_spec.rb
|
|
124
|
-
- spec/parser/groups_spec.rb
|
|
125
|
-
- spec/parser/keep_spec.rb
|
|
126
|
-
- spec/parser/options_spec.rb
|
|
127
|
-
- spec/parser/posix_classes_spec.rb
|
|
128
|
-
- spec/parser/properties_spec.rb
|
|
129
|
-
- spec/parser/quantifiers_spec.rb
|
|
130
|
-
- spec/parser/refcalls_spec.rb
|
|
131
|
-
- spec/parser/set/intersections_spec.rb
|
|
132
|
-
- spec/parser/set/ranges_spec.rb
|
|
133
|
-
- spec/parser/sets_spec.rb
|
|
134
|
-
- spec/parser/types_spec.rb
|
|
135
|
-
- spec/scanner/all_spec.rb
|
|
136
|
-
- spec/scanner/anchors_spec.rb
|
|
137
|
-
- spec/scanner/conditionals_spec.rb
|
|
138
|
-
- spec/scanner/delimiters_spec.rb
|
|
139
|
-
- spec/scanner/errors_spec.rb
|
|
140
|
-
- spec/scanner/escapes_spec.rb
|
|
141
|
-
- spec/scanner/free_space_spec.rb
|
|
142
|
-
- spec/scanner/groups_spec.rb
|
|
143
|
-
- spec/scanner/keep_spec.rb
|
|
144
|
-
- spec/scanner/literals_spec.rb
|
|
145
|
-
- spec/scanner/meta_spec.rb
|
|
146
|
-
- spec/scanner/options_spec.rb
|
|
147
|
-
- spec/scanner/properties_spec.rb
|
|
148
|
-
- spec/scanner/quantifiers_spec.rb
|
|
149
|
-
- spec/scanner/refcalls_spec.rb
|
|
150
|
-
- spec/scanner/sets_spec.rb
|
|
151
|
-
- spec/scanner/types_spec.rb
|
|
152
|
-
- spec/spec_helper.rb
|
|
153
|
-
- spec/support/runner.rb
|
|
154
|
-
- spec/support/shared_examples.rb
|
|
155
|
-
- spec/support/warning_extractor.rb
|
|
156
|
-
- spec/syntax/syntax_spec.rb
|
|
157
|
-
- spec/syntax/syntax_token_map_spec.rb
|
|
158
|
-
- spec/syntax/versions/1.8.6_spec.rb
|
|
159
|
-
- spec/syntax/versions/1.9.1_spec.rb
|
|
160
|
-
- spec/syntax/versions/1.9.3_spec.rb
|
|
161
|
-
- spec/syntax/versions/2.0.0_spec.rb
|
|
162
|
-
- spec/syntax/versions/2.2.0_spec.rb
|
|
163
|
-
- spec/syntax/versions/aliases_spec.rb
|
|
164
|
-
- spec/token/token_spec.rb
|
|
165
109
|
homepage: https://github.com/ammar/regexp_parser
|
|
166
110
|
licenses:
|
|
167
111
|
- MIT
|
|
168
112
|
metadata:
|
|
169
|
-
|
|
113
|
+
bug_tracker_uri: https://github.com/ammar/regexp_parser/issues
|
|
114
|
+
changelog_uri: https://github.com/ammar/regexp_parser/blob/master/CHANGELOG.md
|
|
115
|
+
homepage_uri: https://github.com/ammar/regexp_parser
|
|
116
|
+
source_code_uri: https://github.com/ammar/regexp_parser
|
|
117
|
+
wiki_uri: https://github.com/ammar/regexp_parser/wiki
|
|
118
|
+
rubygems_mfa_required: 'true'
|
|
170
119
|
post_install_message:
|
|
171
|
-
rdoc_options:
|
|
172
|
-
- "--inline-source"
|
|
173
|
-
- "--charset=UTF-8"
|
|
120
|
+
rdoc_options: []
|
|
174
121
|
require_paths:
|
|
175
122
|
- lib
|
|
176
123
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -184,77 +131,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
184
131
|
- !ruby/object:Gem::Version
|
|
185
132
|
version: '0'
|
|
186
133
|
requirements: []
|
|
187
|
-
rubygems_version: 3.
|
|
134
|
+
rubygems_version: 3.5.3
|
|
188
135
|
signing_key:
|
|
189
136
|
specification_version: 4
|
|
190
137
|
summary: Scanner, lexer, parser for ruby's regular expressions
|
|
191
|
-
test_files:
|
|
192
|
-
- spec/expression/base_spec.rb
|
|
193
|
-
- spec/expression/clone_spec.rb
|
|
194
|
-
- spec/expression/conditional_spec.rb
|
|
195
|
-
- spec/expression/free_space_spec.rb
|
|
196
|
-
- spec/expression/methods/match_length_spec.rb
|
|
197
|
-
- spec/expression/methods/match_spec.rb
|
|
198
|
-
- spec/expression/methods/strfregexp_spec.rb
|
|
199
|
-
- spec/expression/methods/tests_spec.rb
|
|
200
|
-
- spec/expression/methods/traverse_spec.rb
|
|
201
|
-
- spec/expression/options_spec.rb
|
|
202
|
-
- spec/expression/subexpression_spec.rb
|
|
203
|
-
- spec/expression/to_h_spec.rb
|
|
204
|
-
- spec/expression/to_s_spec.rb
|
|
205
|
-
- spec/lexer/all_spec.rb
|
|
206
|
-
- spec/lexer/conditionals_spec.rb
|
|
207
|
-
- spec/lexer/delimiters_spec.rb
|
|
208
|
-
- spec/lexer/escapes_spec.rb
|
|
209
|
-
- spec/lexer/keep_spec.rb
|
|
210
|
-
- spec/lexer/literals_spec.rb
|
|
211
|
-
- spec/lexer/nesting_spec.rb
|
|
212
|
-
- spec/lexer/refcalls_spec.rb
|
|
213
|
-
- spec/parser/all_spec.rb
|
|
214
|
-
- spec/parser/alternation_spec.rb
|
|
215
|
-
- spec/parser/anchors_spec.rb
|
|
216
|
-
- spec/parser/conditionals_spec.rb
|
|
217
|
-
- spec/parser/errors_spec.rb
|
|
218
|
-
- spec/parser/escapes_spec.rb
|
|
219
|
-
- spec/parser/free_space_spec.rb
|
|
220
|
-
- spec/parser/groups_spec.rb
|
|
221
|
-
- spec/parser/keep_spec.rb
|
|
222
|
-
- spec/parser/options_spec.rb
|
|
223
|
-
- spec/parser/posix_classes_spec.rb
|
|
224
|
-
- spec/parser/properties_spec.rb
|
|
225
|
-
- spec/parser/quantifiers_spec.rb
|
|
226
|
-
- spec/parser/refcalls_spec.rb
|
|
227
|
-
- spec/parser/set/intersections_spec.rb
|
|
228
|
-
- spec/parser/set/ranges_spec.rb
|
|
229
|
-
- spec/parser/sets_spec.rb
|
|
230
|
-
- spec/parser/types_spec.rb
|
|
231
|
-
- spec/scanner/all_spec.rb
|
|
232
|
-
- spec/scanner/anchors_spec.rb
|
|
233
|
-
- spec/scanner/conditionals_spec.rb
|
|
234
|
-
- spec/scanner/delimiters_spec.rb
|
|
235
|
-
- spec/scanner/errors_spec.rb
|
|
236
|
-
- spec/scanner/escapes_spec.rb
|
|
237
|
-
- spec/scanner/free_space_spec.rb
|
|
238
|
-
- spec/scanner/groups_spec.rb
|
|
239
|
-
- spec/scanner/keep_spec.rb
|
|
240
|
-
- spec/scanner/literals_spec.rb
|
|
241
|
-
- spec/scanner/meta_spec.rb
|
|
242
|
-
- spec/scanner/options_spec.rb
|
|
243
|
-
- spec/scanner/properties_spec.rb
|
|
244
|
-
- spec/scanner/quantifiers_spec.rb
|
|
245
|
-
- spec/scanner/refcalls_spec.rb
|
|
246
|
-
- spec/scanner/sets_spec.rb
|
|
247
|
-
- spec/scanner/types_spec.rb
|
|
248
|
-
- spec/spec_helper.rb
|
|
249
|
-
- spec/support/runner.rb
|
|
250
|
-
- spec/support/shared_examples.rb
|
|
251
|
-
- spec/support/warning_extractor.rb
|
|
252
|
-
- spec/syntax/syntax_spec.rb
|
|
253
|
-
- spec/syntax/syntax_token_map_spec.rb
|
|
254
|
-
- spec/syntax/versions/1.8.6_spec.rb
|
|
255
|
-
- spec/syntax/versions/1.9.1_spec.rb
|
|
256
|
-
- spec/syntax/versions/1.9.3_spec.rb
|
|
257
|
-
- spec/syntax/versions/2.0.0_spec.rb
|
|
258
|
-
- spec/syntax/versions/2.2.0_spec.rb
|
|
259
|
-
- spec/syntax/versions/aliases_spec.rb
|
|
260
|
-
- spec/token/token_spec.rb
|
|
138
|
+
test_files: []
|