regexp_property_values 1.0.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/tests.yml +22 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +16 -0
- data/Gemfile +6 -0
- data/README.md +4 -1
- data/Rakefile +5 -0
- data/ext/regexp_property_values/regexp_property_values.c +4 -0
- data/lib/aliases +12 -0
- data/lib/regexp_property_values/updater.rb +10 -11
- data/lib/regexp_property_values/version.rb +1 -1
- data/lib/regexp_property_values.rb +2 -2
- data/lib/values +31 -0
- data/regexp_property_values.gemspec +0 -6
- metadata +8 -78
- data/.travis.yml +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cdb92664f5c2d943c3e6d7a82720d306fed68efc788b7983073412c8fe3b710f
|
4
|
+
data.tar.gz: 31a796c90cc09cf6453bbac697fcfc3e3d752060681173d318549ac032adf6a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b87d459e10251725ebbe142b03187e2714d19b5aec425b6bd92be9e52646a43c4fac4167968fdc8a95a546e58f4228e1c919640ca74221a3cfeba28c93079257
|
7
|
+
data.tar.gz: 39ca12c98c0f347603cd900f7cf99c4d98a4e30e5700c4da91fc0aa91c39766aed307839bed6a7d821c02a5032f6955e3f7c2a49f4c5a18aea4618490bfc9811
|
@@ -0,0 +1,22 @@
|
|
1
|
+
name: tests
|
2
|
+
|
3
|
+
on: [push, pull_request]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
build:
|
7
|
+
runs-on: ubuntu-latest
|
8
|
+
|
9
|
+
strategy:
|
10
|
+
matrix:
|
11
|
+
ruby: [ '2.3', '3.1', 'jruby-head' ] # TODO: 'ruby-head' after https://github.com/knu/sorted_set/issues/11
|
12
|
+
|
13
|
+
steps:
|
14
|
+
- uses: actions/checkout@v2
|
15
|
+
- name: Set up Ruby ${{ matrix.ruby }}
|
16
|
+
uses: ruby/setup-ruby@v1
|
17
|
+
with:
|
18
|
+
ruby-version: ${{ matrix.ruby }}
|
19
|
+
- name: Install dependencies
|
20
|
+
run: bundle install --jobs 4
|
21
|
+
- name: Test with Rake
|
22
|
+
run: bundle exec rake
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [1.3.0] - 2022-04-07
|
8
|
+
|
9
|
+
### Added
|
10
|
+
- new properties of Ruby 3.2 / Unicode 14.0
|
11
|
+
|
12
|
+
## [1.2.0] - 2021-12-31
|
13
|
+
|
14
|
+
### Added
|
15
|
+
- support for usage in Ractors
|
16
|
+
|
17
|
+
## [1.1.0] - 2021-12-05
|
18
|
+
|
19
|
+
### Added
|
20
|
+
- added new properties from Ruby `3.1.0` to output of `::all`, `::all_for_current_ruby`
|
21
|
+
- added options to run `::update` with custom ucd/emoji source paths
|
22
|
+
|
7
23
|
## [1.0.0] - 2019-06-16
|
8
24
|
|
9
25
|
### Changed
|
data/Gemfile
CHANGED
@@ -4,3 +4,9 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
|
|
4
4
|
|
5
5
|
# Specify your gem's dependencies in regexp_property_values.gemspec
|
6
6
|
gemspec
|
7
|
+
|
8
|
+
gem 'character_set', '~> 1.4.0'
|
9
|
+
gem 'rake', '~> 13.0'
|
10
|
+
gem 'rake-compiler', '~> 1.0'
|
11
|
+
gem 'range_compressor', '~> 1.0'
|
12
|
+
gem 'rspec', '~> 3.0'
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# RegexpPropertyValues
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/regexp_property_values.svg)](http://badge.fury.io/rb/regexp_property_values)
|
4
|
-
[![Build Status](https://
|
4
|
+
[![Build Status](https://github.com/jaynetics/regexp_property_values/workflows/tests/badge.svg)](https://github.com/jaynetics/regexp_property_values/actions)
|
5
5
|
|
6
6
|
This small library lets you see which property values are supported by the regular expression engine of the Ruby version you are running and directly reads out their codepoint ranges from there.
|
7
7
|
|
@@ -34,6 +34,8 @@ PV['foobar'].supported_by_current_ruby? # => false
|
|
34
34
|
PV['AHex'].matched_characters # => %w[0 1 2 3 4 5 6 7 8 9 A B C ...]
|
35
35
|
PV['AHex'].matched_codepoints # => [48, 49, 50, ...]
|
36
36
|
PV['AHex'].matched_ranges # => [48..57, 65..70, 97..102]
|
37
|
+
|
38
|
+
PV['foobar'].matched_ranges # => RegexpPropertyValues::Error
|
37
39
|
```
|
38
40
|
|
39
41
|
If [`character_set`](https://github.com/jaynetics/character_set) is installed, you can also do this:
|
@@ -49,5 +51,6 @@ PV['AHex'].character_set # => #<CharacterSet: {48, 49...} (size: 22)>
|
|
49
51
|
PV.alias_hash # => { <Value name='M'> => <Value name='Mark'>, ... }
|
50
52
|
|
51
53
|
# download a list of possible properties for the running Ruby version
|
54
|
+
# (only used for .all and .alias_hash, not needed for prop lookup via .[])
|
52
55
|
PV.update
|
53
56
|
```
|
data/Rakefile
CHANGED
@@ -56,6 +56,10 @@ VALUE method_matched_ranges(VALUE self, VALUE arg)
|
|
56
56
|
|
57
57
|
void Init_regexp_property_values()
|
58
58
|
{
|
59
|
+
#ifdef HAVE_RB_EXT_RACTOR_SAFE
|
60
|
+
rb_ext_ractor_safe(true);
|
61
|
+
#endif
|
62
|
+
|
59
63
|
VALUE module;
|
60
64
|
module = rb_define_module("OnigRegexpPropertyHelper");
|
61
65
|
rb_define_singleton_method(module, "matched_ranges", method_matched_ranges, 1);
|
data/lib/aliases
CHANGED
@@ -30,10 +30,12 @@ Cari;Carian
|
|
30
30
|
Cc;Control
|
31
31
|
Cf;Format
|
32
32
|
Cher;Cherokee
|
33
|
+
Chrs;Chorasmian
|
33
34
|
Cn;Unassigned
|
34
35
|
Co;Private_Use
|
35
36
|
Combining_Mark;Mark
|
36
37
|
Copt;Coptic
|
38
|
+
Cpmn;Cypro_Minoan
|
37
39
|
Cprt;Cypriot
|
38
40
|
Cs;Surrogate
|
39
41
|
Cyrl;Cyrillic
|
@@ -41,9 +43,14 @@ DI;Default_Ignorable_Code_Point
|
|
41
43
|
Dep;Deprecated
|
42
44
|
Deva;Devanagari
|
43
45
|
Dia;Diacritic
|
46
|
+
Diak;Dives_Akuru
|
44
47
|
Dogr;Dogra
|
45
48
|
Dsrt;Deseret
|
46
49
|
Dupl;Duployan
|
50
|
+
EBase;Emoji_Modifier_Base
|
51
|
+
EComp;Emoji_Component
|
52
|
+
EMod;Emoji_Modifier
|
53
|
+
EPres;Emoji_Presentation
|
47
54
|
Egyp;Egyptian_Hieroglyphs
|
48
55
|
Elba;Elbasan
|
49
56
|
Elym;Elymaic
|
@@ -85,6 +92,7 @@ Kana;Katakana
|
|
85
92
|
Khar;Kharoshthi
|
86
93
|
Khmr;Khmer
|
87
94
|
Khoj;Khojki
|
95
|
+
Kits;Khitan_Small_Script
|
88
96
|
Knda;Kannada
|
89
97
|
Kthi;Kaithi
|
90
98
|
L;Letter
|
@@ -147,6 +155,7 @@ Orkh;Old_Turkic
|
|
147
155
|
Orya;Oriya
|
148
156
|
Osge;Osage
|
149
157
|
Osma;Osmanya
|
158
|
+
Ougr;Old_Uyghur
|
150
159
|
P;Punctuation
|
151
160
|
PCM;Prepended_Concatenation_Mark
|
152
161
|
Palm;Palmyrene
|
@@ -211,10 +220,12 @@ Tglg;Tagalog
|
|
211
220
|
Thaa;Thaana
|
212
221
|
Tibt;Tibetan
|
213
222
|
Tirh;Tirhuta
|
223
|
+
Tnsa;Tangsa
|
214
224
|
UIdeo;Unified_Ideograph
|
215
225
|
Ugar;Ugaritic
|
216
226
|
VS;Variation_Selector
|
217
227
|
Vaii;Vai
|
228
|
+
Vith;Vithkuqi
|
218
229
|
WSpace;White_Space
|
219
230
|
Wara;Warang_Citi
|
220
231
|
Wcho;Wancho
|
@@ -222,6 +233,7 @@ XIDC;XID_Continue
|
|
222
233
|
XIDS;XID_Start
|
223
234
|
Xpeo;Old_Persian
|
224
235
|
Xsux;Cuneiform
|
236
|
+
Yezi;Yezidi
|
225
237
|
Yiii;Yi
|
226
238
|
Z;Separator
|
227
239
|
Zanb;Zanabazar_Square
|
@@ -5,7 +5,7 @@ module RegexpPropertyValues
|
|
5
5
|
require 'fileutils'
|
6
6
|
require 'set'
|
7
7
|
|
8
|
-
BASE_URL = '
|
8
|
+
BASE_URL = 'https://www.unicode.org/Public/UCD/latest/ucd'
|
9
9
|
|
10
10
|
UCD_FILES = %w[
|
11
11
|
Blocks.txt
|
@@ -23,9 +23,9 @@ module RegexpPropertyValues
|
|
23
23
|
|
24
24
|
TMP_DIR = File.join(__dir__, 'tmp_ucd')
|
25
25
|
|
26
|
-
def call
|
26
|
+
def call(ucd_path: nil, emoji_path: nil)
|
27
27
|
prepare_tmp_dir
|
28
|
-
download_ucd_files
|
28
|
+
download_ucd_files(ucd_path: ucd_path, emoji_path: emoji_path)
|
29
29
|
write_values
|
30
30
|
write_aliases
|
31
31
|
remove_tmp_dir
|
@@ -37,17 +37,16 @@ module RegexpPropertyValues
|
|
37
37
|
FileUtils.mkdir(TMP_DIR)
|
38
38
|
end
|
39
39
|
|
40
|
-
def download_ucd_files
|
41
|
-
|
42
|
-
emoji_version = RbConfig::CONFIG.fetch('UNICODE_EMOJI_VERSION')
|
43
|
-
puts 'This will load ucd and emoji data for the CURRENT RUBY '\
|
44
|
-
"(#{unicode_version} / #{emoji_version}). Run this on the "\
|
45
|
-
'latest Ruby version you want to support. Continue? [y/n]'
|
40
|
+
def download_ucd_files(ucd_path: nil, emoji_path: nil)
|
41
|
+
puts 'This will try to load the latest UCD data. Continue? [y/n]'
|
46
42
|
return puts 'download skipped.' unless $stdin.gets =~ /^y/i
|
47
43
|
|
44
|
+
ucd_path ||= ENV['RPV_UCD_PATH'] || BASE_URL
|
45
|
+
emoji_path ||= ENV['RPV_EMOJI_PATH'] || "#{BASE_URL}/emoji/"
|
46
|
+
|
48
47
|
Dir.chdir(TMP_DIR) do
|
49
|
-
UCD_FILES.each { |f| `wget #{
|
50
|
-
EMOJI_FILES.each { |f| `wget #{
|
48
|
+
UCD_FILES.each { |f| `wget #{ucd_path}/#{f}` }
|
49
|
+
EMOJI_FILES.each { |f| `wget #{emoji_path}/#{f}` }
|
51
50
|
end
|
52
51
|
end
|
53
52
|
|
data/lib/values
CHANGED
@@ -6,6 +6,8 @@ Age=10.0
|
|
6
6
|
Age=11.0
|
7
7
|
Age=12.0
|
8
8
|
Age=12.1
|
9
|
+
Age=13.0
|
10
|
+
Age=14.0
|
9
11
|
Age=2.0
|
10
12
|
Age=2.1
|
11
13
|
Age=3.0
|
@@ -60,6 +62,7 @@ Changes_When_Lowercased
|
|
60
62
|
Changes_When_Titlecased
|
61
63
|
Changes_When_Uppercased
|
62
64
|
Cherokee
|
65
|
+
Chorasmian
|
63
66
|
Close_Punctuation
|
64
67
|
Cntrl
|
65
68
|
Common
|
@@ -69,6 +72,7 @@ Coptic
|
|
69
72
|
Cuneiform
|
70
73
|
Currency_Symbol
|
71
74
|
Cypriot
|
75
|
+
Cypro_Minoan
|
72
76
|
Cyrillic
|
73
77
|
Dash
|
74
78
|
Dash_Punctuation
|
@@ -79,6 +83,7 @@ Deseret
|
|
79
83
|
Devanagari
|
80
84
|
Diacritic
|
81
85
|
Digit
|
86
|
+
Dives_Akuru
|
82
87
|
Dogra
|
83
88
|
Duployan
|
84
89
|
Egyptian_Hieroglyphs
|
@@ -132,6 +137,7 @@ In_Ancient_Greek_Numbers
|
|
132
137
|
In_Ancient_Symbols
|
133
138
|
In_Arabic
|
134
139
|
In_Arabic_Extended_A
|
140
|
+
In_Arabic_Extended_B
|
135
141
|
In_Arabic_Mathematical_Alphabetic_Symbols
|
136
142
|
In_Arabic_Presentation_Forms_A
|
137
143
|
In_Arabic_Presentation_Forms_B
|
@@ -170,6 +176,7 @@ In_CJK_Unified_Ideographs_Extension_C
|
|
170
176
|
In_CJK_Unified_Ideographs_Extension_D
|
171
177
|
In_CJK_Unified_Ideographs_Extension_E
|
172
178
|
In_CJK_Unified_Ideographs_Extension_F
|
179
|
+
In_CJK_Unified_Ideographs_Extension_G
|
173
180
|
In_Carian
|
174
181
|
In_Caucasian_Albanian
|
175
182
|
In_Chakma
|
@@ -177,6 +184,7 @@ In_Cham
|
|
177
184
|
In_Cherokee
|
178
185
|
In_Cherokee_Supplement
|
179
186
|
In_Chess_Symbols
|
187
|
+
In_Chorasmian
|
180
188
|
In_Combining_Diacritical_Marks
|
181
189
|
In_Combining_Diacritical_Marks_Extended
|
182
190
|
In_Combining_Diacritical_Marks_Supplement
|
@@ -191,6 +199,7 @@ In_Cuneiform
|
|
191
199
|
In_Cuneiform_Numbers_and_Punctuation
|
192
200
|
In_Currency_Symbols
|
193
201
|
In_Cypriot_Syllabary
|
202
|
+
In_Cypro_Minoan
|
194
203
|
In_Cyrillic
|
195
204
|
In_Cyrillic_Extended_A
|
196
205
|
In_Cyrillic_Extended_B
|
@@ -200,6 +209,7 @@ In_Deseret
|
|
200
209
|
In_Devanagari
|
201
210
|
In_Devanagari_Extended
|
202
211
|
In_Dingbats
|
212
|
+
In_Dives_Akuru
|
203
213
|
In_Dogra
|
204
214
|
In_Domino_Tiles
|
205
215
|
In_Duployan
|
@@ -216,6 +226,7 @@ In_Enclosed_Ideographic_Supplement
|
|
216
226
|
In_Ethiopic
|
217
227
|
In_Ethiopic_Extended
|
218
228
|
In_Ethiopic_Extended_A
|
229
|
+
In_Ethiopic_Extended_B
|
219
230
|
In_Ethiopic_Supplement
|
220
231
|
In_General_Punctuation
|
221
232
|
In_Geometric_Shapes
|
@@ -255,6 +266,7 @@ In_Inscriptional_Parthian
|
|
255
266
|
In_Javanese
|
256
267
|
In_Kaithi
|
257
268
|
In_Kana_Extended_A
|
269
|
+
In_Kana_Extended_B
|
258
270
|
In_Kana_Supplement
|
259
271
|
In_Kanbun
|
260
272
|
In_Kangxi_Radicals
|
@@ -263,6 +275,7 @@ In_Katakana
|
|
263
275
|
In_Katakana_Phonetic_Extensions
|
264
276
|
In_Kayah_Li
|
265
277
|
In_Kharoshthi
|
278
|
+
In_Khitan_Small_Script
|
266
279
|
In_Khmer
|
267
280
|
In_Khmer_Symbols
|
268
281
|
In_Khojki
|
@@ -275,6 +288,8 @@ In_Latin_Extended_B
|
|
275
288
|
In_Latin_Extended_C
|
276
289
|
In_Latin_Extended_D
|
277
290
|
In_Latin_Extended_E
|
291
|
+
In_Latin_Extended_F
|
292
|
+
In_Latin_Extended_G
|
278
293
|
In_Lepcha
|
279
294
|
In_Letterlike_Symbols
|
280
295
|
In_Limbu
|
@@ -282,6 +297,7 @@ In_Linear_A
|
|
282
297
|
In_Linear_B_Ideograms
|
283
298
|
In_Linear_B_Syllabary
|
284
299
|
In_Lisu
|
300
|
+
In_Lisu_Supplement
|
285
301
|
In_Low_Surrogates
|
286
302
|
In_Lycian
|
287
303
|
In_Lydian
|
@@ -338,6 +354,7 @@ In_Old_Persian
|
|
338
354
|
In_Old_Sogdian
|
339
355
|
In_Old_South_Arabian
|
340
356
|
In_Old_Turkic
|
357
|
+
In_Old_Uyghur
|
341
358
|
In_Optical_Character_Recognition
|
342
359
|
In_Oriya
|
343
360
|
In_Ornamental_Dingbats
|
@@ -387,6 +404,7 @@ In_Supplementary_Private_Use_Area_B
|
|
387
404
|
In_Sutton_SignWriting
|
388
405
|
In_Syloti_Nagri
|
389
406
|
In_Symbols_and_Pictographs_Extended_A
|
407
|
+
In_Symbols_for_Legacy_Computing
|
390
408
|
In_Syriac
|
391
409
|
In_Syriac_Supplement
|
392
410
|
In_Tagalog
|
@@ -399,29 +417,36 @@ In_Tai_Xuan_Jing_Symbols
|
|
399
417
|
In_Takri
|
400
418
|
In_Tamil
|
401
419
|
In_Tamil_Supplement
|
420
|
+
In_Tangsa
|
402
421
|
In_Tangut
|
403
422
|
In_Tangut_Components
|
423
|
+
In_Tangut_Supplement
|
404
424
|
In_Telugu
|
405
425
|
In_Thaana
|
406
426
|
In_Thai
|
407
427
|
In_Tibetan
|
408
428
|
In_Tifinagh
|
409
429
|
In_Tirhuta
|
430
|
+
In_Toto
|
410
431
|
In_Transport_and_Map_Symbols
|
411
432
|
In_Ugaritic
|
412
433
|
In_Unified_Canadian_Aboriginal_Syllabics
|
413
434
|
In_Unified_Canadian_Aboriginal_Syllabics_Extended
|
435
|
+
In_Unified_Canadian_Aboriginal_Syllabics_Extended_A
|
414
436
|
In_Vai
|
415
437
|
In_Variation_Selectors
|
416
438
|
In_Variation_Selectors_Supplement
|
417
439
|
In_Vedic_Extensions
|
418
440
|
In_Vertical_Forms
|
441
|
+
In_Vithkuqi
|
419
442
|
In_Wancho
|
420
443
|
In_Warang_Citi
|
444
|
+
In_Yezidi
|
421
445
|
In_Yi_Radicals
|
422
446
|
In_Yi_Syllables
|
423
447
|
In_Yijing_Hexagram_Symbols
|
424
448
|
In_Zanabazar_Square
|
449
|
+
In_Znamenny_Musical_Notation
|
425
450
|
Inherited
|
426
451
|
Initial_Punctuation
|
427
452
|
Inscriptional_Pahlavi
|
@@ -433,6 +458,7 @@ Kannada
|
|
433
458
|
Katakana
|
434
459
|
Kayah_Li
|
435
460
|
Kharoshthi
|
461
|
+
Khitan_Small_Script
|
436
462
|
Khmer
|
437
463
|
Khojki
|
438
464
|
Khudawadi
|
@@ -496,6 +522,7 @@ Old_Persian
|
|
496
522
|
Old_Sogdian
|
497
523
|
Old_South_Arabian
|
498
524
|
Old_Turkic
|
525
|
+
Old_Uyghur
|
499
526
|
Open_Punctuation
|
500
527
|
Oriya
|
501
528
|
Osage
|
@@ -560,6 +587,7 @@ Tai_Tham
|
|
560
587
|
Tai_Viet
|
561
588
|
Takri
|
562
589
|
Tamil
|
590
|
+
Tangsa
|
563
591
|
Tangut
|
564
592
|
Telugu
|
565
593
|
Terminal_Punctuation
|
@@ -569,6 +597,7 @@ Tibetan
|
|
569
597
|
Tifinagh
|
570
598
|
Tirhuta
|
571
599
|
Titlecase_Letter
|
600
|
+
Toto
|
572
601
|
Ugaritic
|
573
602
|
Unassigned
|
574
603
|
Unified_Ideograph
|
@@ -578,6 +607,7 @@ Uppercase
|
|
578
607
|
Uppercase_Letter
|
579
608
|
Vai
|
580
609
|
Variation_Selector
|
610
|
+
Vithkuqi
|
581
611
|
Wancho
|
582
612
|
Warang_Citi
|
583
613
|
White_Space
|
@@ -586,5 +616,6 @@ XDigit
|
|
586
616
|
XID_Continue
|
587
617
|
XID_Start
|
588
618
|
XPosixPunct
|
619
|
+
Yezidi
|
589
620
|
Yi
|
590
621
|
Zanabazar_Square
|
@@ -23,10 +23,4 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.extensions = %w[ext/regexp_property_values/extconf.rb]
|
24
24
|
|
25
25
|
s.required_ruby_version = '>= 2.0.0'
|
26
|
-
|
27
|
-
s.add_development_dependency 'character_set', '~> 1.4.0'
|
28
|
-
s.add_development_dependency 'rake', '~> 12.0'
|
29
|
-
s.add_development_dependency 'rake-compiler', '~> 1.0'
|
30
|
-
s.add_development_dependency 'range_compressor', '~> 1.0'
|
31
|
-
s.add_development_dependency 'rspec', '~> 3.0'
|
32
26
|
end
|
metadata
CHANGED
@@ -1,85 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: regexp_property_values
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Janosch Müller
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
12
|
-
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: character_set
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 1.4.0
|
20
|
-
type: :development
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 1.4.0
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rake
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '12.0'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '12.0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: rake-compiler
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '1.0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '1.0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: range_compressor
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - "~>"
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '1.0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - "~>"
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '1.0'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: rspec
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - "~>"
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '3.0'
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - "~>"
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '3.0'
|
11
|
+
date: 2022-04-07 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
83
13
|
description: This small library lets you see which property values are supported by
|
84
14
|
the regular expression engine of the Ruby version you are running, and what they
|
85
15
|
match.
|
@@ -90,9 +20,9 @@ extensions:
|
|
90
20
|
- ext/regexp_property_values/extconf.rb
|
91
21
|
extra_rdoc_files: []
|
92
22
|
files:
|
23
|
+
- ".github/workflows/tests.yml"
|
93
24
|
- ".gitignore"
|
94
25
|
- ".rspec"
|
95
|
-
- ".travis.yml"
|
96
26
|
- CHANGELOG.md
|
97
27
|
- Gemfile
|
98
28
|
- LICENSE.txt
|
@@ -116,7 +46,7 @@ homepage: https://github.com/jaynetics/regexp_property_values
|
|
116
46
|
licenses:
|
117
47
|
- MIT
|
118
48
|
metadata: {}
|
119
|
-
post_install_message:
|
49
|
+
post_install_message:
|
120
50
|
rdoc_options: []
|
121
51
|
require_paths:
|
122
52
|
- lib
|
@@ -131,8 +61,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
131
61
|
- !ruby/object:Gem::Version
|
132
62
|
version: '0'
|
133
63
|
requirements: []
|
134
|
-
rubygems_version: 3.
|
135
|
-
signing_key:
|
64
|
+
rubygems_version: 3.3.3
|
65
|
+
signing_key:
|
136
66
|
specification_version: 4
|
137
67
|
summary: Inspect property values supported by Ruby's regex engine
|
138
68
|
test_files: []
|