regexp_property_values 1.5.0 → 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/regexp_property_values/updater.rb +5 -0
- data/lib/regexp_property_values/version.rb +1 -1
- data/lib/values +13 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3b4e58dbefa036bfca55b36da86baa96e1ba6c56483167279c9ce971823b8ba
|
4
|
+
data.tar.gz: 5e5ed54fef70679475b4abaf35abe7e65a8d28940cde6f07398378b5eedf3e03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d650720818f1e427b0cb4532e8e93cc348d7680c5a3c0c11e5cfba273802c32889567b0e2aff6e84247c98e60dc97022a47cb4987ed812a3d787bbf9ca98a3a0
|
7
|
+
data.tar.gz: 10232496849f607db55974e99a998fd6b9f4b2efe459e0fabe03db46ccfe9f41414f1b3028f39ba27101cc17eb0afdb32cb7326d87f262c7739222a958c7e327
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,11 @@ 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.5.1] - 2024-01-06
|
8
|
+
|
9
|
+
### Fixed
|
10
|
+
- added missing Grapheme_Cluster_Break properties
|
11
|
+
|
7
12
|
## [1.5.0] - 2024-01-06
|
8
13
|
|
9
14
|
### Added
|
@@ -15,6 +15,7 @@ module RegexpPropertyValues
|
|
15
15
|
PropertyValueAliases.txt
|
16
16
|
PropList.txt
|
17
17
|
Scripts.txt
|
18
|
+
auxiliary/GraphemeBreakProperty.txt
|
18
19
|
]
|
19
20
|
|
20
21
|
EMOJI_FILES = %w[
|
@@ -88,6 +89,10 @@ module RegexpPropertyValues
|
|
88
89
|
@values << 'Age=' + caps[:age_num]
|
89
90
|
end
|
90
91
|
|
92
|
+
scan('GraphemeBreakProperty.txt', /; *(?<name>\w+) *#/) do |caps|
|
93
|
+
@values << 'Grapheme_Cluster_Break=' + caps[:name]
|
94
|
+
end
|
95
|
+
|
91
96
|
File.write(RegexpPropertyValues::VALUES_PATH, @values.sort.join("\n"))
|
92
97
|
end
|
93
98
|
|
data/lib/values
CHANGED
@@ -108,6 +108,19 @@ Gothic
|
|
108
108
|
Grantha
|
109
109
|
Graph
|
110
110
|
Grapheme_Base
|
111
|
+
Grapheme_Cluster_Break=CR
|
112
|
+
Grapheme_Cluster_Break=Control
|
113
|
+
Grapheme_Cluster_Break=Extend
|
114
|
+
Grapheme_Cluster_Break=L
|
115
|
+
Grapheme_Cluster_Break=LF
|
116
|
+
Grapheme_Cluster_Break=LV
|
117
|
+
Grapheme_Cluster_Break=LVT
|
118
|
+
Grapheme_Cluster_Break=Prepend
|
119
|
+
Grapheme_Cluster_Break=Regional_Indicator
|
120
|
+
Grapheme_Cluster_Break=SpacingMark
|
121
|
+
Grapheme_Cluster_Break=T
|
122
|
+
Grapheme_Cluster_Break=V
|
123
|
+
Grapheme_Cluster_Break=ZWJ
|
111
124
|
Grapheme_Extend
|
112
125
|
Grapheme_Link
|
113
126
|
Greek
|