regexp_parser 2.10.0 → 2.11.1
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/LICENSE +1 -1
- data/Rakefile +3 -3
- data/lib/regexp_parser/expression/classes/escape_sequence.rb +1 -0
- data/lib/regexp_parser/expression/methods/escape_sequence_codepoint.rb +6 -0
- data/lib/regexp_parser/expression/shared.rb +4 -3
- data/lib/regexp_parser/parser.rb +1 -0
- data/lib/regexp_parser/scanner/properties/long.csv +19 -0
- data/lib/regexp_parser/scanner/properties/short.csv +8 -0
- data/lib/regexp_parser/scanner/scanner.rl +35 -7
- data/lib/regexp_parser/scanner.rb +500 -470
- data/lib/regexp_parser/syntax/token/escape.rb +1 -1
- data/lib/regexp_parser/syntax/token/unicode_property.rb +13 -0
- data/lib/regexp_parser/syntax/versions/3.5.0.rb +4 -0
- data/lib/regexp_parser/version.rb +1 -1
- metadata +4 -6
@@ -61,6 +61,8 @@ module Regexp::Syntax
|
|
61
61
|
|
62
62
|
Age_V3_2_0 = %i[age=14.0 age=15.0]
|
63
63
|
|
64
|
+
Age_V3_5_0 = %i[age=15.1]
|
65
|
+
|
64
66
|
Age = all[:Age_V]
|
65
67
|
|
66
68
|
Derived_V1_9_0 = %i[
|
@@ -130,6 +132,12 @@ module Regexp::Syntax
|
|
130
132
|
regional_indicator
|
131
133
|
]
|
132
134
|
|
135
|
+
Derived_V3_5_0 = %i[
|
136
|
+
id_compat_math_continue
|
137
|
+
id_compat_math_start
|
138
|
+
ids_unary_operator
|
139
|
+
]
|
140
|
+
|
133
141
|
Derived = all[:Derived_V]
|
134
142
|
|
135
143
|
Script_V1_9_0 = %i[
|
@@ -689,6 +697,10 @@ module Regexp::Syntax
|
|
689
697
|
in_znamenny_musical_notation
|
690
698
|
]
|
691
699
|
|
700
|
+
UnicodeBlock_V3_5_0 = %i[
|
701
|
+
in_cjk_unified_ideographs_extension_i
|
702
|
+
]
|
703
|
+
|
692
704
|
UnicodeBlock = all[:UnicodeBlock_V]
|
693
705
|
|
694
706
|
Emoji_V2_5_0 = %i[
|
@@ -735,6 +747,7 @@ module Regexp::Syntax
|
|
735
747
|
V2_6_3 = all[:V2_6_3]
|
736
748
|
V3_1_0 = all[:V3_1_0]
|
737
749
|
V3_2_0 = all[:V3_2_0]
|
750
|
+
V3_5_0 = all[:V3_5_0]
|
738
751
|
|
739
752
|
All = all[/^V\d+_\d+_\d+$/]
|
740
753
|
|
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: 2.
|
4
|
+
version: 2.11.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ammar Ali
|
8
8
|
- Janosch Müller
|
9
|
-
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
13
12
|
dependencies: []
|
14
13
|
description: A library for tokenizing, lexing, and parsing Ruby regular expressions.
|
15
14
|
email:
|
@@ -106,6 +105,7 @@ files:
|
|
106
105
|
- lib/regexp_parser/syntax/versions/2.6.3.rb
|
107
106
|
- lib/regexp_parser/syntax/versions/3.1.0.rb
|
108
107
|
- lib/regexp_parser/syntax/versions/3.2.0.rb
|
108
|
+
- lib/regexp_parser/syntax/versions/3.5.0.rb
|
109
109
|
- lib/regexp_parser/token.rb
|
110
110
|
- lib/regexp_parser/version.rb
|
111
111
|
- regexp_parser.gemspec
|
@@ -119,7 +119,6 @@ metadata:
|
|
119
119
|
source_code_uri: https://github.com/ammar/regexp_parser
|
120
120
|
wiki_uri: https://github.com/ammar/regexp_parser/wiki
|
121
121
|
rubygems_mfa_required: 'true'
|
122
|
-
post_install_message:
|
123
122
|
rdoc_options: []
|
124
123
|
require_paths:
|
125
124
|
- lib
|
@@ -134,8 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
134
133
|
- !ruby/object:Gem::Version
|
135
134
|
version: '0'
|
136
135
|
requirements: []
|
137
|
-
rubygems_version: 3.
|
138
|
-
signing_key:
|
136
|
+
rubygems_version: 3.6.7
|
139
137
|
specification_version: 4
|
140
138
|
summary: Scanner, lexer, parser for ruby's regular expressions
|
141
139
|
test_files: []
|