regexp_property_values 1.5.0-java → 1.5.1-java
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/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: f4518acf00c9367623e0e052c08972c13801ad749dd1bf4f7df8341cad28a639
|
|
4
|
+
data.tar.gz: 3d557814376809cede7762b4680ce043714463f3857e04ba8d66d29cfbb212f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15d768da9c13f1cd45c871a0eb63b674dc5f86d46a95cd31fe7b3b65a998dbd397fae9af02d14ea6256db2d019020bb6feb277e0b1875f9b20ddac6ace5b20a8
|
|
7
|
+
data.tar.gz: 47778cf3fbf16427c6c5b27f7ab6a91431227cdae0c2b53ace0e6b0158018a04947975f52895ea985356d988cd7f15784e75d0e289fcbf2e880e07be7c2117be
|
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
|