regexp_parser 0.4.11 → 0.4.12

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4ead2c1a9d383277e24d9f52b182d2a613e2c12aed0f37b406392c09f5122fcb
4
+ data.tar.gz: 69140654b4608900c424a881f039e7470015ee29c0286f97a4081984537f2f5f
5
+ SHA512:
6
+ metadata.gz: 1e9f577783fbd3663f19bee25b58be1ff7b35722a32545496b9e17cfeab22f2761b2d9b740aeeb8fca1db121c8141b6104899589adfe12b3bf8bd373898a0b92
7
+ data.tar.gz: 9b0d32488e22c717ef146a547c42633d6ae7fba274ec36d980d92efbbfd342b65aa2aa7112724ff1b8e23e21dfc619d8b6e10c093f48a801302d4d5827d5eb74
data/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ Fri Mar 30 2018 Janosch Müller <janosch84@gmail.com>
2
+
3
+ * Added ruby version files for 2.4.4 and 2.5.1
4
+ * Bumped version to 0.4.12
5
+
1
6
  Sun Mar 4 2018 Janosch Müller <janosch84@gmail.com>
2
7
 
3
8
  * Fixed UnknownSyntaxNameError introduced in v0.4.10 if
@@ -72,7 +72,7 @@ class Regexp::Scanner
72
72
  end
73
73
 
74
74
  def scan(input_object, &block)
75
- @literal, top, stack = nil, 0, []
75
+ @literal, stack = nil, []
76
76
 
77
77
  if input_object.is_a?(Regexp)
78
78
  input = input_object.source
@@ -837,7 +837,7 @@ class Regexp::Scanner
837
837
  end
838
838
 
839
839
  def scan(input_object, &block)
840
- @literal, top, stack = nil, 0, []
840
+ @literal, stack = nil, []
841
841
 
842
842
  if input_object.is_a?(Regexp)
843
843
  input = input_object.source
@@ -0,0 +1,13 @@
1
+ require File.expand_path('../2.4.3', __FILE__)
2
+
3
+ module Regexp::Syntax
4
+ module Ruby
5
+
6
+ class V244 < Regexp::Syntax::Ruby::V243
7
+ def initialize
8
+ super
9
+ end
10
+ end
11
+
12
+ end
13
+ end
@@ -1,8 +1,8 @@
1
- require File.expand_path('../2.4.3', __FILE__)
1
+ require File.expand_path('../2.4.4', __FILE__)
2
2
 
3
3
  module Regexp::Syntax
4
4
  module Ruby
5
5
  # uses the latest 2.4 release
6
- class V24 < Regexp::Syntax::Ruby::V243; end
6
+ class V24 < Regexp::Syntax::Ruby::V244; end
7
7
  end
8
8
  end
@@ -0,0 +1,13 @@
1
+ require File.expand_path('../2.5.0', __FILE__)
2
+
3
+ module Regexp::Syntax
4
+ module Ruby
5
+
6
+ class V251 < Regexp::Syntax::Ruby::V250
7
+ def initialize
8
+ super
9
+ end
10
+ end
11
+
12
+ end
13
+ end
@@ -1,8 +1,8 @@
1
- require File.expand_path('../2.5.0', __FILE__)
1
+ require File.expand_path('../2.5.1', __FILE__)
2
2
 
3
3
  module Regexp::Syntax
4
4
  module Ruby
5
5
  # uses the latest 2.5 release
6
- class V25 < Regexp::Syntax::Ruby::V250; end
6
+ class V25 < Regexp::Syntax::Ruby::V251; end
7
7
  end
8
8
  end
@@ -1,5 +1,5 @@
1
1
  class Regexp
2
2
  class Parser
3
- VERSION = '0.4.11'
3
+ VERSION = '0.4.12'
4
4
  end
5
5
  end
@@ -289,10 +289,17 @@ class TestSyntaxFiles < Test::Unit::TestCase
289
289
  assert syntax.kind_of?(Regexp::Syntax::Ruby::V243)
290
290
  end
291
291
 
292
+ def test_syntax_file_2_4_4
293
+ syntax = Regexp::Syntax.new 'ruby/2.4.4'
294
+
295
+ assert syntax.kind_of?(Regexp::Syntax::Ruby::V243)
296
+ assert syntax.kind_of?(Regexp::Syntax::Ruby::V244)
297
+ end
298
+
292
299
  def test_syntax_file_2_4_alias
293
300
  syntax = Regexp::Syntax.new 'ruby/2.4'
294
301
 
295
- assert syntax.kind_of?(Regexp::Syntax::Ruby::V243)
302
+ assert syntax.kind_of?(Regexp::Syntax::Ruby::V244)
296
303
  end
297
304
 
298
305
  # 2.5 syntax files
@@ -303,10 +310,17 @@ class TestSyntaxFiles < Test::Unit::TestCase
303
310
  assert syntax.kind_of?(Regexp::Syntax::Ruby::V250)
304
311
  end
305
312
 
313
+ def test_syntax_file_2_5_1
314
+ syntax = Regexp::Syntax.new 'ruby/2.5.1'
315
+
316
+ assert syntax.kind_of?(Regexp::Syntax::Ruby::V250)
317
+ assert syntax.kind_of?(Regexp::Syntax::Ruby::V251)
318
+ end
319
+
306
320
  def test_syntax_file_2_5_alias
307
321
  syntax = Regexp::Syntax.new 'ruby/2.5'
308
322
 
309
- assert syntax.kind_of?(Regexp::Syntax::Ruby::V250)
323
+ assert syntax.kind_of?(Regexp::Syntax::Ruby::V251)
310
324
  end
311
325
 
312
326
  # 2.6 syntax files
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: regexp_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.11
5
- prerelease:
4
+ version: 0.4.12
6
5
  platform: ruby
7
6
  authors:
8
7
  - Ammar Ali
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2018-03-04 00:00:00.000000000 Z
11
+ date: 2018-03-30 00:00:00.000000000 Z
13
12
  dependencies: []
14
13
  description: A library for tokenizing, lexing, and parsing Ruby regular expressions.
15
14
  email:
@@ -18,200 +17,199 @@ executables: []
18
17
  extensions: []
19
18
  extra_rdoc_files: []
20
19
  files:
20
+ - ChangeLog
21
+ - Gemfile
22
+ - LICENSE
23
+ - README.md
24
+ - Rakefile
21
25
  - lib/regexp_parser.rb
22
26
  - lib/regexp_parser/expression.rb
23
- - lib/regexp_parser/syntax.rb
24
- - lib/regexp_parser/lexer.rb
25
- - lib/regexp_parser/parser.rb
26
- - lib/regexp_parser/version.rb
27
- - lib/regexp_parser/token.rb
28
- - lib/regexp_parser/expression/subexpression.rb
29
- - lib/regexp_parser/expression/methods/strfregexp.rb
30
- - lib/regexp_parser/expression/methods/tests.rb
31
- - lib/regexp_parser/expression/methods/traverse.rb
32
- - lib/regexp_parser/expression/quantifier.rb
33
- - lib/regexp_parser/expression/classes/backref.rb
34
27
  - lib/regexp_parser/expression/classes/alternation.rb
28
+ - lib/regexp_parser/expression/classes/anchor.rb
29
+ - lib/regexp_parser/expression/classes/backref.rb
35
30
  - lib/regexp_parser/expression/classes/conditional.rb
36
- - lib/regexp_parser/expression/classes/root.rb
37
- - lib/regexp_parser/expression/classes/set.rb
38
- - lib/regexp_parser/expression/classes/group.rb
31
+ - lib/regexp_parser/expression/classes/escape.rb
39
32
  - lib/regexp_parser/expression/classes/free_space.rb
40
- - lib/regexp_parser/expression/classes/type.rb
33
+ - lib/regexp_parser/expression/classes/group.rb
41
34
  - lib/regexp_parser/expression/classes/keep.rb
42
- - lib/regexp_parser/expression/classes/anchor.rb
43
- - lib/regexp_parser/expression/classes/property.rb
44
35
  - lib/regexp_parser/expression/classes/literal.rb
45
- - lib/regexp_parser/expression/classes/escape.rb
36
+ - lib/regexp_parser/expression/classes/property.rb
37
+ - lib/regexp_parser/expression/classes/root.rb
38
+ - lib/regexp_parser/expression/classes/set.rb
39
+ - lib/regexp_parser/expression/classes/type.rb
40
+ - lib/regexp_parser/expression/methods/strfregexp.rb
41
+ - lib/regexp_parser/expression/methods/tests.rb
42
+ - lib/regexp_parser/expression/methods/traverse.rb
43
+ - lib/regexp_parser/expression/quantifier.rb
46
44
  - lib/regexp_parser/expression/sequence.rb
47
- - lib/regexp_parser/syntax/base.rb
48
- - lib/regexp_parser/syntax/versions.rb
45
+ - lib/regexp_parser/expression/subexpression.rb
46
+ - lib/regexp_parser/lexer.rb
47
+ - lib/regexp_parser/parser.rb
48
+ - lib/regexp_parser/scanner.rb
49
+ - lib/regexp_parser/scanner/property.rl
50
+ - lib/regexp_parser/scanner/scanner.rl
51
+ - lib/regexp_parser/syntax.rb
49
52
  - lib/regexp_parser/syntax/any.rb
50
- - lib/regexp_parser/syntax/tokens.rb
51
- - lib/regexp_parser/syntax/tokens/backref.rb
52
- - lib/regexp_parser/syntax/tokens/meta.rb
53
- - lib/regexp_parser/syntax/tokens/conditional.rb
54
- - lib/regexp_parser/syntax/tokens/quantifier.rb
55
- - lib/regexp_parser/syntax/tokens/group.rb
56
- - lib/regexp_parser/syntax/tokens/assertion.rb
57
- - lib/regexp_parser/syntax/tokens/keep.rb
58
- - lib/regexp_parser/syntax/tokens/character_type.rb
59
- - lib/regexp_parser/syntax/tokens/character_set.rb
60
- - lib/regexp_parser/syntax/tokens/anchor.rb
61
- - lib/regexp_parser/syntax/tokens/unicode_property.rb
62
- - lib/regexp_parser/syntax/tokens/escape.rb
63
- - lib/regexp_parser/syntax/ruby/2.2.0.rb
64
- - lib/regexp_parser/syntax/ruby/2.1.7.rb
53
+ - lib/regexp_parser/syntax/base.rb
54
+ - lib/regexp_parser/syntax/ruby/1.8.6.rb
55
+ - lib/regexp_parser/syntax/ruby/1.8.7.rb
56
+ - lib/regexp_parser/syntax/ruby/1.8.rb
57
+ - lib/regexp_parser/syntax/ruby/1.9.1.rb
65
58
  - lib/regexp_parser/syntax/ruby/1.9.2.rb
66
- - lib/regexp_parser/syntax/ruby/2.3.1.rb
59
+ - lib/regexp_parser/syntax/ruby/1.9.3.rb
60
+ - lib/regexp_parser/syntax/ruby/1.9.rb
61
+ - lib/regexp_parser/syntax/ruby/2.0.0.rb
62
+ - lib/regexp_parser/syntax/ruby/2.0.rb
63
+ - lib/regexp_parser/syntax/ruby/2.1.0.rb
64
+ - lib/regexp_parser/syntax/ruby/2.1.10.rb
65
+ - lib/regexp_parser/syntax/ruby/2.1.2.rb
67
66
  - lib/regexp_parser/syntax/ruby/2.1.3.rb
67
+ - lib/regexp_parser/syntax/ruby/2.1.4.rb
68
+ - lib/regexp_parser/syntax/ruby/2.1.5.rb
69
+ - lib/regexp_parser/syntax/ruby/2.1.6.rb
70
+ - lib/regexp_parser/syntax/ruby/2.1.7.rb
71
+ - lib/regexp_parser/syntax/ruby/2.1.8.rb
72
+ - lib/regexp_parser/syntax/ruby/2.1.9.rb
73
+ - lib/regexp_parser/syntax/ruby/2.1.rb
74
+ - lib/regexp_parser/syntax/ruby/2.2.0.rb
75
+ - lib/regexp_parser/syntax/ruby/2.2.1.rb
76
+ - lib/regexp_parser/syntax/ruby/2.2.2.rb
77
+ - lib/regexp_parser/syntax/ruby/2.2.3.rb
68
78
  - lib/regexp_parser/syntax/ruby/2.2.4.rb
69
- - lib/regexp_parser/syntax/ruby/2.3.5.rb
70
- - lib/regexp_parser/syntax/ruby/1.8.rb
71
- - lib/regexp_parser/syntax/ruby/1.8.7.rb
72
- - lib/regexp_parser/syntax/ruby/2.1.2.rb
73
79
  - lib/regexp_parser/syntax/ruby/2.2.5.rb
74
- - lib/regexp_parser/syntax/ruby/2.3.4.rb
75
- - lib/regexp_parser/syntax/ruby/1.9.rb
76
- - lib/regexp_parser/syntax/ruby/1.8.6.rb
77
- - lib/regexp_parser/syntax/ruby/2.2.1.rb
78
- - lib/regexp_parser/syntax/ruby/2.1.6.rb
79
- - lib/regexp_parser/syntax/ruby/1.9.3.rb
80
+ - lib/regexp_parser/syntax/ruby/2.2.6.rb
81
+ - lib/regexp_parser/syntax/ruby/2.2.7.rb
82
+ - lib/regexp_parser/syntax/ruby/2.2.8.rb
83
+ - lib/regexp_parser/syntax/ruby/2.2.9.rb
84
+ - lib/regexp_parser/syntax/ruby/2.2.rb
80
85
  - lib/regexp_parser/syntax/ruby/2.3.0.rb
81
- - lib/regexp_parser/syntax/ruby/2.1.rb
82
- - lib/regexp_parser/syntax/ruby/2.1.9.rb
86
+ - lib/regexp_parser/syntax/ruby/2.3.1.rb
87
+ - lib/regexp_parser/syntax/ruby/2.3.2.rb
88
+ - lib/regexp_parser/syntax/ruby/2.3.3.rb
89
+ - lib/regexp_parser/syntax/ruby/2.3.4.rb
90
+ - lib/regexp_parser/syntax/ruby/2.3.5.rb
91
+ - lib/regexp_parser/syntax/ruby/2.3.6.rb
92
+ - lib/regexp_parser/syntax/ruby/2.3.rb
83
93
  - lib/regexp_parser/syntax/ruby/2.4.0.rb
84
- - lib/regexp_parser/syntax/ruby/2.5.rb
85
- - lib/regexp_parser/syntax/ruby/2.1.8.rb
86
94
  - lib/regexp_parser/syntax/ruby/2.4.1.rb
87
- - lib/regexp_parser/syntax/ruby/2.5.0.rb
88
- - lib/regexp_parser/syntax/ruby/2.4.rb
89
- - lib/regexp_parser/syntax/ruby/2.0.rb
90
95
  - lib/regexp_parser/syntax/ruby/2.4.2.rb
91
- - lib/regexp_parser/syntax/ruby/2.2.8.rb
92
- - lib/regexp_parser/syntax/ruby/2.1.10.rb
93
- - lib/regexp_parser/syntax/ruby/2.6.0.rb
94
- - lib/regexp_parser/syntax/ruby/2.3.rb
95
- - lib/regexp_parser/syntax/ruby/2.2.9.rb
96
- - lib/regexp_parser/syntax/ruby/2.2.rb
97
96
  - lib/regexp_parser/syntax/ruby/2.4.3.rb
97
+ - lib/regexp_parser/syntax/ruby/2.4.4.rb
98
+ - lib/regexp_parser/syntax/ruby/2.4.rb
99
+ - lib/regexp_parser/syntax/ruby/2.5.0.rb
100
+ - lib/regexp_parser/syntax/ruby/2.5.1.rb
101
+ - lib/regexp_parser/syntax/ruby/2.5.rb
102
+ - lib/regexp_parser/syntax/ruby/2.6.0.rb
98
103
  - lib/regexp_parser/syntax/ruby/2.6.rb
99
- - lib/regexp_parser/syntax/ruby/2.2.6.rb
100
- - lib/regexp_parser/syntax/ruby/2.0.0.rb
101
- - lib/regexp_parser/syntax/ruby/2.2.2.rb
102
- - lib/regexp_parser/syntax/ruby/2.1.5.rb
103
- - lib/regexp_parser/syntax/ruby/2.3.3.rb
104
- - lib/regexp_parser/syntax/ruby/2.2.3.rb
105
- - lib/regexp_parser/syntax/ruby/1.9.1.rb
106
- - lib/regexp_parser/syntax/ruby/2.1.4.rb
107
- - lib/regexp_parser/syntax/ruby/2.3.2.rb
108
- - lib/regexp_parser/syntax/ruby/2.1.0.rb
109
- - lib/regexp_parser/syntax/ruby/2.2.7.rb
110
- - lib/regexp_parser/syntax/ruby/2.3.6.rb
111
- - lib/regexp_parser/scanner.rb
112
- - test/token/test_token.rb
113
- - test/token/test_all.rb
104
+ - lib/regexp_parser/syntax/tokens.rb
105
+ - lib/regexp_parser/syntax/tokens/anchor.rb
106
+ - lib/regexp_parser/syntax/tokens/assertion.rb
107
+ - lib/regexp_parser/syntax/tokens/backref.rb
108
+ - lib/regexp_parser/syntax/tokens/character_set.rb
109
+ - lib/regexp_parser/syntax/tokens/character_type.rb
110
+ - lib/regexp_parser/syntax/tokens/conditional.rb
111
+ - lib/regexp_parser/syntax/tokens/escape.rb
112
+ - lib/regexp_parser/syntax/tokens/group.rb
113
+ - lib/regexp_parser/syntax/tokens/keep.rb
114
+ - lib/regexp_parser/syntax/tokens/meta.rb
115
+ - lib/regexp_parser/syntax/tokens/quantifier.rb
116
+ - lib/regexp_parser/syntax/tokens/unicode_property.rb
117
+ - lib/regexp_parser/syntax/versions.rb
118
+ - lib/regexp_parser/token.rb
119
+ - lib/regexp_parser/version.rb
120
+ - regexp_parser.gemspec
121
+ - test/expression/test_all.rb
122
+ - test/expression/test_base.rb
123
+ - test/expression/test_clone.rb
124
+ - test/expression/test_conditionals.rb
125
+ - test/expression/test_free_space.rb
126
+ - test/expression/test_set.rb
127
+ - test/expression/test_strfregexp.rb
128
+ - test/expression/test_subexpression.rb
129
+ - test/expression/test_tests.rb
130
+ - test/expression/test_to_h.rb
131
+ - test/expression/test_to_s.rb
132
+ - test/expression/test_traverse.rb
114
133
  - test/helpers.rb
115
- - test/lexer/test_keep.rb
134
+ - test/lexer/test_all.rb
116
135
  - test/lexer/test_conditionals.rb
117
- - test/lexer/test_refcalls.rb
136
+ - test/lexer/test_keep.rb
118
137
  - test/lexer/test_literals.rb
119
- - test/lexer/test_all.rb
120
138
  - test/lexer/test_nesting.rb
121
- - test/parser/test_sets.rb
122
- - test/parser/test_properties.rb
123
- - test/parser/test_types.rb
124
- - test/parser/test_groups.rb
139
+ - test/lexer/test_refcalls.rb
140
+ - test/parser/test_all.rb
125
141
  - test/parser/test_alternation.rb
126
- - test/parser/test_free_space.rb
127
142
  - test/parser/test_anchors.rb
128
- - test/parser/test_escapes.rb
129
- - test/parser/test_quantifiers.rb
130
- - test/parser/test_keep.rb
131
143
  - test/parser/test_conditionals.rb
132
144
  - test/parser/test_errors.rb
145
+ - test/parser/test_escapes.rb
146
+ - test/parser/test_free_space.rb
147
+ - test/parser/test_groups.rb
148
+ - test/parser/test_keep.rb
149
+ - test/parser/test_properties.rb
150
+ - test/parser/test_quantifiers.rb
133
151
  - test/parser/test_refcalls.rb
134
- - test/parser/test_all.rb
152
+ - test/parser/test_sets.rb
153
+ - test/parser/test_types.rb
154
+ - test/scanner/test_all.rb
155
+ - test/scanner/test_anchors.rb
156
+ - test/scanner/test_conditionals.rb
157
+ - test/scanner/test_emojis.rb
158
+ - test/scanner/test_errors.rb
159
+ - test/scanner/test_escapes.rb
160
+ - test/scanner/test_free_space.rb
161
+ - test/scanner/test_groups.rb
162
+ - test/scanner/test_keep.rb
163
+ - test/scanner/test_literals.rb
164
+ - test/scanner/test_meta.rb
165
+ - test/scanner/test_properties.rb
166
+ - test/scanner/test_quantifiers.rb
167
+ - test/scanner/test_refcalls.rb
168
+ - test/scanner/test_scripts.rb
169
+ - test/scanner/test_sets.rb
170
+ - test/scanner/test_types.rb
171
+ - test/scanner/test_unicode_blocks.rb
135
172
  - test/support/disable_autotest.rb
136
- - test/support/warning_extractor.rb
137
173
  - test/support/runner.rb
138
- - test/expression/test_subexpression.rb
139
- - test/expression/test_base.rb
140
- - test/expression/test_free_space.rb
141
- - test/expression/test_to_h.rb
142
- - test/expression/test_set.rb
143
- - test/expression/test_conditionals.rb
144
- - test/expression/test_clone.rb
145
- - test/expression/test_tests.rb
146
- - test/expression/test_to_s.rb
147
- - test/expression/test_traverse.rb
148
- - test/expression/test_all.rb
149
- - test/expression/test_strfregexp.rb
150
- - test/syntax/test_syntax.rb
151
- - test/syntax/test_all.rb
152
- - test/syntax/ruby/test_2.0.0.rb
174
+ - test/support/warning_extractor.rb
153
175
  - test/syntax/ruby/test_1.8.rb
154
176
  - test/syntax/ruby/test_1.9.1.rb
155
- - test/syntax/ruby/test_files.rb
156
- - test/syntax/ruby/test_2.2.0.rb
157
177
  - test/syntax/ruby/test_1.9.3.rb
178
+ - test/syntax/ruby/test_2.0.0.rb
179
+ - test/syntax/ruby/test_2.2.0.rb
158
180
  - test/syntax/ruby/test_all.rb
181
+ - test/syntax/ruby/test_files.rb
182
+ - test/syntax/test_all.rb
183
+ - test/syntax/test_syntax.rb
159
184
  - test/test_all.rb
160
- - test/scanner/test_sets.rb
161
- - test/scanner/test_properties.rb
162
- - test/scanner/test_scripts.rb
163
- - test/scanner/test_emojis.rb
164
- - test/scanner/test_types.rb
165
- - test/scanner/test_groups.rb
166
- - test/scanner/test_meta.rb
167
- - test/scanner/test_free_space.rb
168
- - test/scanner/test_anchors.rb
169
- - test/scanner/test_escapes.rb
170
- - test/scanner/test_unicode_blocks.rb
171
- - test/scanner/test_quantifiers.rb
172
- - test/scanner/test_keep.rb
173
- - test/scanner/test_conditionals.rb
174
- - test/scanner/test_errors.rb
175
- - test/scanner/test_refcalls.rb
176
- - test/scanner/test_literals.rb
177
- - test/scanner/test_all.rb
178
- - lib/regexp_parser/scanner/property.rl
179
- - lib/regexp_parser/scanner/scanner.rl
180
- - Gemfile
181
- - Rakefile
182
- - LICENSE
183
- - README.md
184
- - ChangeLog
185
- - regexp_parser.gemspec
185
+ - test/token/test_all.rb
186
+ - test/token/test_token.rb
186
187
  homepage: http://github.com/ammar/regexp_parser
187
188
  licenses:
188
189
  - MIT
190
+ metadata:
191
+ issue_tracker: https://github.com/ammar/regexp_parser/issues
189
192
  post_install_message:
190
193
  rdoc_options:
191
- - --inline-source
192
- - --charset=UTF-8
194
+ - "--inline-source"
195
+ - "--charset=UTF-8"
193
196
  require_paths:
194
197
  - lib
195
198
  required_ruby_version: !ruby/object:Gem::Requirement
196
- none: false
197
199
  requirements:
198
- - - ! '>='
200
+ - - ">="
199
201
  - !ruby/object:Gem::Version
200
202
  version: 1.9.1
201
203
  required_rubygems_version: !ruby/object:Gem::Requirement
202
- none: false
203
204
  requirements:
204
- - - ! '>='
205
+ - - ">="
205
206
  - !ruby/object:Gem::Version
206
207
  version: '0'
207
- segments:
208
- - 0
209
- hash: 3431536018828435735
210
208
  requirements: []
211
209
  rubyforge_project:
212
- rubygems_version: 1.8.23.2
210
+ rubygems_version: 2.7.6
213
211
  signing_key:
214
- specification_version: 3
212
+ specification_version: 4
215
213
  summary: Scanner, lexer, parser for ruby's regular expressions
216
214
  test_files:
217
215
  - test/token/test_token.rb