twitter_cldr 3.0.1 → 3.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +4 -2
  3. data/History.txt +4 -0
  4. data/README.md +17 -6
  5. data/lib/twitter_cldr/resources/postal_codes_importer.rb +12 -1
  6. data/lib/twitter_cldr/resources/regexp_ast_generator.rb +41 -0
  7. data/lib/twitter_cldr/resources.rb +1 -0
  8. data/lib/twitter_cldr/shared/postal_code_generator.rb +50 -0
  9. data/lib/twitter_cldr/shared/postal_codes.rb +48 -9
  10. data/lib/twitter_cldr/shared.rb +15 -14
  11. data/lib/twitter_cldr/utils/regexp_ast.rb +115 -0
  12. data/lib/twitter_cldr/utils/regexp_sampler.rb +149 -0
  13. data/lib/twitter_cldr/utils.rb +5 -3
  14. data/lib/twitter_cldr/version.rb +1 -1
  15. data/resources/shared/postal_codes.yml +1442 -159
  16. data/spec/bidi/bidi_spec.rb +1 -1
  17. data/spec/collation/collation_spec.rb +1 -1
  18. data/spec/collation/collator_spec.rb +31 -31
  19. data/spec/collation/implicit_collation_elements_spec.rb +6 -6
  20. data/spec/collation/sort_key_builder_spec.rb +28 -26
  21. data/spec/collation/tailoring_spec.rb +1 -1
  22. data/spec/collation/trie_builder_spec.rb +16 -16
  23. data/spec/collation/trie_dumps_spec.rb +2 -2
  24. data/spec/collation/trie_loader_spec.rb +8 -8
  25. data/spec/collation/trie_spec.rb +61 -61
  26. data/spec/collation/trie_with_fallback_spec.rb +5 -5
  27. data/spec/core_ext_spec.rb +1 -1
  28. data/spec/data_readers/additional_date_format_selector_spec.rb +38 -38
  29. data/spec/data_readers/date_time_data_reader_spec.rb +2 -2
  30. data/spec/data_readers/number_data_reader_spec.rb +1 -1
  31. data/spec/formatters/calendars/datetime_formatter_spec.rb +218 -218
  32. data/spec/formatters/list_formatter_spec.rb +8 -8
  33. data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +14 -14
  34. data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +4 -4
  35. data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +4 -4
  36. data/spec/formatters/numbers/currency_formatter_spec.rb +11 -11
  37. data/spec/formatters/numbers/decimal_formatter_spec.rb +3 -3
  38. data/spec/formatters/numbers/helpers/fraction_spec.rb +3 -3
  39. data/spec/formatters/numbers/helpers/integer_spec.rb +16 -16
  40. data/spec/formatters/numbers/number_formatter_spec.rb +21 -21
  41. data/spec/formatters/numbers/percent_formatter_spec.rb +3 -3
  42. data/spec/formatters/numbers/rbnf/rbnf_spec.rb +2 -2
  43. data/spec/formatters/plurals/plural_formatter_spec.rb +41 -41
  44. data/spec/formatters/plurals/rules_spec.rb +13 -13
  45. data/spec/localized/localized_array_spec.rb +12 -12
  46. data/spec/localized/localized_date_spec.rb +33 -33
  47. data/spec/localized/localized_datetime_spec.rb +11 -11
  48. data/spec/localized/localized_hash_spec.rb +4 -4
  49. data/spec/localized/localized_number_spec.rb +36 -36
  50. data/spec/localized/localized_object_spec.rb +8 -8
  51. data/spec/localized/localized_string_spec.rb +53 -53
  52. data/spec/localized/localized_symbol_spec.rb +9 -9
  53. data/spec/localized/localized_time_spec.rb +10 -10
  54. data/spec/localized/localized_timespan_spec.rb +8 -8
  55. data/spec/normalization_spec.rb +6 -6
  56. data/spec/parsers/number_parser_spec.rb +36 -36
  57. data/spec/parsers/parser_spec.rb +5 -5
  58. data/spec/parsers/segmentation_parser_spec.rb +19 -19
  59. data/spec/parsers/symbol_table_spec.rb +4 -4
  60. data/spec/parsers/unicode_regex/character_class_spec.rb +19 -19
  61. data/spec/parsers/unicode_regex/character_range_spec.rb +1 -1
  62. data/spec/parsers/unicode_regex/character_set_spec.rb +8 -8
  63. data/spec/parsers/unicode_regex/literal_spec.rb +5 -5
  64. data/spec/parsers/unicode_regex/unicode_string_spec.rb +2 -2
  65. data/spec/parsers/unicode_regex_parser_spec.rb +28 -28
  66. data/spec/resources/loader_spec.rb +32 -32
  67. data/spec/shared/break_iterator_spec.rb +13 -13
  68. data/spec/shared/calendar_spec.rb +59 -59
  69. data/spec/shared/casefolder_spec.rb +5 -5
  70. data/spec/shared/code_point_spec.rb +46 -46
  71. data/spec/shared/currencies_spec.rb +7 -7
  72. data/spec/shared/language_codes_spec.rb +34 -34
  73. data/spec/shared/languages_spec.rb +30 -30
  74. data/spec/shared/numbering_system_spec.rb +7 -7
  75. data/spec/shared/numbers_spec.rb +4 -4
  76. data/spec/shared/phone_codes_spec.rb +7 -7
  77. data/spec/shared/postal_code_generator_spec.rb +76 -0
  78. data/spec/shared/postal_codes_spec.rb +35 -29
  79. data/spec/shared/territories_spec.rb +40 -40
  80. data/spec/shared/unicode_regex_spec.rb +71 -71
  81. data/spec/spec_helper.rb +2 -2
  82. data/spec/tokenizers/calendars/date_tokenizer_spec.rb +1 -1
  83. data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +6 -6
  84. data/spec/tokenizers/composite_token_spec.rb +3 -3
  85. data/spec/tokenizers/token_spec.rb +3 -3
  86. data/spec/twitter_cldr_spec.rb +72 -72
  87. data/spec/utils/code_points_spec.rb +10 -10
  88. data/spec/utils/interpolation_spec.rb +32 -32
  89. data/spec/utils/range_set_spec.rb +36 -36
  90. data/spec/utils/regexp_ast_spec.rb +44 -0
  91. data/spec/utils/regexp_sampler_spec.rb +182 -0
  92. data/spec/utils/yaml/yaml_spec.rb +23 -23
  93. data/spec/utils_spec.rb +19 -19
  94. metadata +263 -258
metadata CHANGED
@@ -1,73 +1,77 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twitter_cldr
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Dutro
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-23 00:00:00.000000000 Z
11
+ date: 2014-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
15
- requirement: !ruby/object:Gem::Requirement
15
+ version_requirements: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
20
+ requirement: !ruby/object:Gem::Requirement
23
21
  requirements:
24
22
  - - '>='
25
23
  - !ruby/object:Gem::Version
26
24
  version: '0'
25
+ prerelease: false
26
+ type: :runtime
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: camertron-eprun
29
- requirement: !ruby/object:Gem::Requirement
29
+ version_requirements: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
34
+ requirement: !ruby/object:Gem::Requirement
37
35
  requirements:
38
36
  - - '>='
39
37
  - !ruby/object:Gem::Version
40
38
  version: '0'
39
+ prerelease: false
40
+ type: :runtime
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: tzinfo
43
- requirement: !ruby/object:Gem::Requirement
43
+ version_requirements: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - '>='
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
- type: :runtime
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
48
+ requirement: !ruby/object:Gem::Requirement
51
49
  requirements:
52
50
  - - '>='
53
51
  - !ruby/object:Gem::Version
54
52
  version: '0'
55
- description: Ruby implementation of the ICU (International Components for Unicode)
56
- that uses the Common Locale Data Repository to format dates, plurals, and more.
53
+ prerelease: false
54
+ type: :runtime
55
+ description: Ruby implementation of the ICU (International Components for Unicode) that uses the Common Locale Data Repository to format dates, plurals, and more.
57
56
  email:
58
57
  - cdutro@twitter.com
59
58
  executables: []
60
59
  extensions: []
61
60
  extra_rdoc_files: []
62
61
  files:
63
- - Gemfile
64
- - History.txt
65
- - LICENSE
66
- - NOTICE
67
- - README.md
68
- - Rakefile
69
62
  - lib/twitter_cldr.rb
70
63
  - lib/twitter_cldr/collation.rb
64
+ - lib/twitter_cldr/core_ext.rb
65
+ - lib/twitter_cldr/data_readers.rb
66
+ - lib/twitter_cldr/formatters.rb
67
+ - lib/twitter_cldr/localized.rb
68
+ - lib/twitter_cldr/normalization.rb
69
+ - lib/twitter_cldr/parsers.rb
70
+ - lib/twitter_cldr/resources.rb
71
+ - lib/twitter_cldr/shared.rb
72
+ - lib/twitter_cldr/tokenizers.rb
73
+ - lib/twitter_cldr/utils.rb
74
+ - lib/twitter_cldr/version.rb
71
75
  - lib/twitter_cldr/collation/collator.rb
72
76
  - lib/twitter_cldr/collation/implicit_collation_elements.rb
73
77
  - lib/twitter_cldr/collation/sort_key_builder.rb
@@ -75,8 +79,6 @@ files:
75
79
  - lib/twitter_cldr/collation/trie_builder.rb
76
80
  - lib/twitter_cldr/collation/trie_loader.rb
77
81
  - lib/twitter_cldr/collation/trie_with_fallback.rb
78
- - lib/twitter_cldr/core_ext.rb
79
- - lib/twitter_cldr/data_readers.rb
80
82
  - lib/twitter_cldr/data_readers/additional_date_format_selector.rb
81
83
  - lib/twitter_cldr/data_readers/calendar_data_reader.rb
82
84
  - lib/twitter_cldr/data_readers/data_reader.rb
@@ -85,34 +87,32 @@ files:
85
87
  - lib/twitter_cldr/data_readers/number_data_reader.rb
86
88
  - lib/twitter_cldr/data_readers/time_data_reader.rb
87
89
  - lib/twitter_cldr/data_readers/timespan_data_reader.rb
88
- - lib/twitter_cldr/formatters.rb
89
- - lib/twitter_cldr/formatters/calendars/date_time_formatter.rb
90
- - lib/twitter_cldr/formatters/calendars/timespan_formatter.rb
91
90
  - lib/twitter_cldr/formatters/formatter.rb
92
91
  - lib/twitter_cldr/formatters/list_formatter.rb
93
92
  - lib/twitter_cldr/formatters/numbers.rb
93
+ - lib/twitter_cldr/formatters/plurals.rb
94
+ - lib/twitter_cldr/formatters/calendars/date_time_formatter.rb
95
+ - lib/twitter_cldr/formatters/calendars/timespan_formatter.rb
96
+ - lib/twitter_cldr/formatters/numbers/currency_formatter.rb
97
+ - lib/twitter_cldr/formatters/numbers/decimal_formatter.rb
98
+ - lib/twitter_cldr/formatters/numbers/number_formatter.rb
99
+ - lib/twitter_cldr/formatters/numbers/percent_formatter.rb
100
+ - lib/twitter_cldr/formatters/numbers/rbnf.rb
94
101
  - lib/twitter_cldr/formatters/numbers/abbreviated/abbreviated_number_formatter.rb
95
102
  - lib/twitter_cldr/formatters/numbers/abbreviated/long_decimal_formatter.rb
96
103
  - lib/twitter_cldr/formatters/numbers/abbreviated/short_decimal_formatter.rb
97
- - lib/twitter_cldr/formatters/numbers/currency_formatter.rb
98
- - lib/twitter_cldr/formatters/numbers/decimal_formatter.rb
99
104
  - lib/twitter_cldr/formatters/numbers/helpers/base.rb
100
105
  - lib/twitter_cldr/formatters/numbers/helpers/fraction.rb
101
106
  - lib/twitter_cldr/formatters/numbers/helpers/integer.rb
102
- - lib/twitter_cldr/formatters/numbers/number_formatter.rb
103
- - lib/twitter_cldr/formatters/numbers/percent_formatter.rb
104
- - lib/twitter_cldr/formatters/numbers/rbnf.rb
105
107
  - lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb
106
- - lib/twitter_cldr/formatters/numbers/rbnf/post_processors/chinese.rb
107
108
  - lib/twitter_cldr/formatters/numbers/rbnf/rule.rb
108
109
  - lib/twitter_cldr/formatters/numbers/rbnf/rule_group.rb
109
110
  - lib/twitter_cldr/formatters/numbers/rbnf/rule_parser.rb
110
111
  - lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb
111
112
  - lib/twitter_cldr/formatters/numbers/rbnf/substitution.rb
112
- - lib/twitter_cldr/formatters/plurals.rb
113
+ - lib/twitter_cldr/formatters/numbers/rbnf/post_processors/chinese.rb
113
114
  - lib/twitter_cldr/formatters/plurals/plural_formatter.rb
114
115
  - lib/twitter_cldr/formatters/plurals/rules.rb
115
- - lib/twitter_cldr/localized.rb
116
116
  - lib/twitter_cldr/localized/localized_array.rb
117
117
  - lib/twitter_cldr/localized/localized_date.rb
118
118
  - lib/twitter_cldr/localized/localized_datetime.rb
@@ -123,20 +123,17 @@ files:
123
123
  - lib/twitter_cldr/localized/localized_symbol.rb
124
124
  - lib/twitter_cldr/localized/localized_time.rb
125
125
  - lib/twitter_cldr/localized/localized_timespan.rb
126
- - lib/twitter_cldr/normalization.rb
127
- - lib/twitter_cldr/parsers.rb
128
126
  - lib/twitter_cldr/parsers/number_parser.rb
129
127
  - lib/twitter_cldr/parsers/parser.rb
130
128
  - lib/twitter_cldr/parsers/segmentation_parser.rb
131
129
  - lib/twitter_cldr/parsers/symbol_table.rb
130
+ - lib/twitter_cldr/parsers/unicode_regex_parser.rb
132
131
  - lib/twitter_cldr/parsers/unicode_regex/character_class.rb
133
132
  - lib/twitter_cldr/parsers/unicode_regex/character_range.rb
134
133
  - lib/twitter_cldr/parsers/unicode_regex/character_set.rb
135
134
  - lib/twitter_cldr/parsers/unicode_regex/component.rb
136
135
  - lib/twitter_cldr/parsers/unicode_regex/literal.rb
137
136
  - lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb
138
- - lib/twitter_cldr/parsers/unicode_regex_parser.rb
139
- - lib/twitter_cldr/resources.rb
140
137
  - lib/twitter_cldr/resources/bidi_test_importer.rb
141
138
  - lib/twitter_cldr/resources/canonical_compositions_updater.rb
142
139
  - lib/twitter_cldr/resources/casefolder.rb.erb
@@ -154,13 +151,13 @@ files:
154
151
  - lib/twitter_cldr/resources/postal_codes_importer.rb
155
152
  - lib/twitter_cldr/resources/rbnf_test_importer.rb
156
153
  - lib/twitter_cldr/resources/readme_renderer.rb
154
+ - lib/twitter_cldr/resources/regexp_ast_generator.rb
157
155
  - lib/twitter_cldr/resources/tailoring_importer.rb
158
156
  - lib/twitter_cldr/resources/uli.rb
159
- - lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb
160
157
  - lib/twitter_cldr/resources/unicode_data_importer.rb
161
158
  - lib/twitter_cldr/resources/unicode_importer.rb
162
159
  - lib/twitter_cldr/resources/unicode_properties_importer.rb
163
- - lib/twitter_cldr/shared.rb
160
+ - lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb
164
161
  - lib/twitter_cldr/shared/bidi.rb
165
162
  - lib/twitter_cldr/shared/break_iterator.rb
166
163
  - lib/twitter_cldr/shared/calendar.rb
@@ -172,29 +169,205 @@ files:
172
169
  - lib/twitter_cldr/shared/numbering_system.rb
173
170
  - lib/twitter_cldr/shared/numbers.rb
174
171
  - lib/twitter_cldr/shared/phone_codes.rb
172
+ - lib/twitter_cldr/shared/postal_code_generator.rb
175
173
  - lib/twitter_cldr/shared/postal_codes.rb
176
174
  - lib/twitter_cldr/shared/territories.rb
177
175
  - lib/twitter_cldr/shared/timezones.rb
178
176
  - lib/twitter_cldr/shared/unicode_regex.rb
179
- - lib/twitter_cldr/tokenizers.rb
177
+ - lib/twitter_cldr/tokenizers/composite_token.rb
178
+ - lib/twitter_cldr/tokenizers/pattern_tokenizer.rb
179
+ - lib/twitter_cldr/tokenizers/token.rb
180
+ - lib/twitter_cldr/tokenizers/tokenizer.rb
180
181
  - lib/twitter_cldr/tokenizers/calendars/date_time_tokenizer.rb
181
182
  - lib/twitter_cldr/tokenizers/calendars/date_tokenizer.rb
182
183
  - lib/twitter_cldr/tokenizers/calendars/time_tokenizer.rb
183
184
  - lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb
184
- - lib/twitter_cldr/tokenizers/composite_token.rb
185
185
  - lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb
186
186
  - lib/twitter_cldr/tokenizers/numbers/rbnf_tokenizer.rb
187
- - lib/twitter_cldr/tokenizers/pattern_tokenizer.rb
188
187
  - lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb
189
- - lib/twitter_cldr/tokenizers/token.rb
190
- - lib/twitter_cldr/tokenizers/tokenizer.rb
191
188
  - lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb
192
- - lib/twitter_cldr/utils.rb
193
189
  - lib/twitter_cldr/utils/code_points.rb
194
190
  - lib/twitter_cldr/utils/interpolation.rb
195
191
  - lib/twitter_cldr/utils/range_set.rb
192
+ - lib/twitter_cldr/utils/regexp_ast.rb
193
+ - lib/twitter_cldr/utils/regexp_sampler.rb
196
194
  - lib/twitter_cldr/utils/yaml.rb
197
- - lib/twitter_cldr/version.rb
195
+ - spec/core_ext_spec.rb
196
+ - spec/normalization_spec.rb
197
+ - spec/readme_spec.rb
198
+ - spec/spec_helper.rb
199
+ - spec/twitter_cldr_spec.rb
200
+ - spec/utils_spec.rb
201
+ - spec/bidi/bidi_spec.rb
202
+ - spec/bidi/classpath_bidi_test.txt
203
+ - spec/collation/collation_spec.rb
204
+ - spec/collation/CollationTest_CLDR_NON_IGNORABLE_Short.txt
205
+ - spec/collation/collator_spec.rb
206
+ - spec/collation/implicit_collation_elements_spec.rb
207
+ - spec/collation/sort_key_builder_spec.rb
208
+ - spec/collation/tailoring_spec.rb
209
+ - spec/collation/trie_builder_spec.rb
210
+ - spec/collation/trie_dumps_spec.rb
211
+ - spec/collation/trie_loader_spec.rb
212
+ - spec/collation/trie_spec.rb
213
+ - spec/collation/trie_with_fallback_spec.rb
214
+ - spec/collation/tailoring_tests/af.txt
215
+ - spec/collation/tailoring_tests/ar.txt
216
+ - spec/collation/tailoring_tests/ca.txt
217
+ - spec/collation/tailoring_tests/cs.txt
218
+ - spec/collation/tailoring_tests/da.txt
219
+ - spec/collation/tailoring_tests/de.txt
220
+ - spec/collation/tailoring_tests/el.txt
221
+ - spec/collation/tailoring_tests/en.txt
222
+ - spec/collation/tailoring_tests/es.txt
223
+ - spec/collation/tailoring_tests/eu.txt
224
+ - spec/collation/tailoring_tests/fa.txt
225
+ - spec/collation/tailoring_tests/fi.txt
226
+ - spec/collation/tailoring_tests/fil.txt
227
+ - spec/collation/tailoring_tests/fr.txt
228
+ - spec/collation/tailoring_tests/he.txt
229
+ - spec/collation/tailoring_tests/hi.txt
230
+ - spec/collation/tailoring_tests/hu.txt
231
+ - spec/collation/tailoring_tests/id.txt
232
+ - spec/collation/tailoring_tests/it.txt
233
+ - spec/collation/tailoring_tests/ja.txt
234
+ - spec/collation/tailoring_tests/ko.txt
235
+ - spec/collation/tailoring_tests/ms.txt
236
+ - spec/collation/tailoring_tests/nb.txt
237
+ - spec/collation/tailoring_tests/nl.txt
238
+ - spec/collation/tailoring_tests/pl.txt
239
+ - spec/collation/tailoring_tests/pt.txt
240
+ - spec/collation/tailoring_tests/ru.txt
241
+ - spec/collation/tailoring_tests/sv.txt
242
+ - spec/collation/tailoring_tests/th.txt
243
+ - spec/collation/tailoring_tests/tr.txt
244
+ - spec/collation/tailoring_tests/uk.txt
245
+ - spec/collation/tailoring_tests/ur.txt
246
+ - spec/collation/tailoring_tests/zh-Hant.txt
247
+ - spec/collation/tailoring_tests/zh.txt
248
+ - spec/data_readers/additional_date_format_selector_spec.rb
249
+ - spec/data_readers/date_time_data_reader_spec.rb
250
+ - spec/data_readers/number_data_reader_spec.rb
251
+ - spec/data_readers/timespan_data_reader.rb
252
+ - spec/formatters/list_formatter_spec.rb
253
+ - spec/formatters/calendars/datetime_formatter_spec.rb
254
+ - spec/formatters/numbers/currency_formatter_spec.rb
255
+ - spec/formatters/numbers/decimal_formatter_spec.rb
256
+ - spec/formatters/numbers/number_formatter_spec.rb
257
+ - spec/formatters/numbers/percent_formatter_spec.rb
258
+ - spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb
259
+ - spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb
260
+ - spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb
261
+ - spec/formatters/numbers/helpers/fraction_spec.rb
262
+ - spec/formatters/numbers/helpers/integer_spec.rb
263
+ - spec/formatters/numbers/rbnf/allowed_failures.yml
264
+ - spec/formatters/numbers/rbnf/rbnf_spec.rb
265
+ - spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml
266
+ - spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml
267
+ - spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml
268
+ - spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml
269
+ - spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml
270
+ - spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml
271
+ - spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml
272
+ - spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml
273
+ - spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml
274
+ - spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml
275
+ - spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml
276
+ - spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml
277
+ - spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml
278
+ - spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml
279
+ - spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml
280
+ - spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml
281
+ - spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml
282
+ - spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml
283
+ - spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml
284
+ - spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml
285
+ - spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml
286
+ - spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml
287
+ - spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml
288
+ - spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml
289
+ - spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml
290
+ - spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml
291
+ - spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml
292
+ - spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml
293
+ - spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml
294
+ - spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml
295
+ - spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml
296
+ - spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml
297
+ - spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml
298
+ - spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml
299
+ - spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml
300
+ - spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml
301
+ - spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml
302
+ - spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml
303
+ - spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml
304
+ - spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml
305
+ - spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml
306
+ - spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml
307
+ - spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml
308
+ - spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml
309
+ - spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml
310
+ - spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml
311
+ - spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml
312
+ - spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml
313
+ - spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml
314
+ - spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml
315
+ - spec/formatters/plurals/plural_formatter_spec.rb
316
+ - spec/formatters/plurals/rules_spec.rb
317
+ - spec/localized/localized_array_spec.rb
318
+ - spec/localized/localized_date_spec.rb
319
+ - spec/localized/localized_datetime_spec.rb
320
+ - spec/localized/localized_hash_spec.rb
321
+ - spec/localized/localized_number_spec.rb
322
+ - spec/localized/localized_object_spec.rb
323
+ - spec/localized/localized_string_spec.rb
324
+ - spec/localized/localized_symbol_spec.rb
325
+ - spec/localized/localized_time_spec.rb
326
+ - spec/localized/localized_timespan_spec.rb
327
+ - spec/parsers/number_parser_spec.rb
328
+ - spec/parsers/parser_spec.rb
329
+ - spec/parsers/segmentation_parser_spec.rb
330
+ - spec/parsers/symbol_table_spec.rb
331
+ - spec/parsers/unicode_regex_parser_spec.rb
332
+ - spec/parsers/unicode_regex/character_class_spec.rb
333
+ - spec/parsers/unicode_regex/character_range_spec.rb
334
+ - spec/parsers/unicode_regex/character_set_spec.rb
335
+ - spec/parsers/unicode_regex/literal_spec.rb
336
+ - spec/parsers/unicode_regex/unicode_string_spec.rb
337
+ - spec/resources/loader_spec.rb
338
+ - spec/shared/break_iterator_spec.rb
339
+ - spec/shared/calendar_spec.rb
340
+ - spec/shared/casefolder_spec.rb
341
+ - spec/shared/casefolding.txt
342
+ - spec/shared/casefolding_expected.txt
343
+ - spec/shared/code_point_spec.rb
344
+ - spec/shared/currencies_spec.rb
345
+ - spec/shared/language_codes_spec.rb
346
+ - spec/shared/languages_spec.rb
347
+ - spec/shared/numbering_system_spec.rb
348
+ - spec/shared/numbers_spec.rb
349
+ - spec/shared/phone_codes_spec.rb
350
+ - spec/shared/postal_code_generator_spec.rb
351
+ - spec/shared/postal_codes_spec.rb
352
+ - spec/shared/territories_spec.rb
353
+ - spec/shared/unicode_regex_spec.rb
354
+ - spec/tokenizers/composite_token_spec.rb
355
+ - spec/tokenizers/token_spec.rb
356
+ - spec/tokenizers/calendars/date_tokenizer_spec.rb
357
+ - spec/tokenizers/calendars/datetime_tokenizer_spec.rb
358
+ - spec/tokenizers/calendars/time_tokenizer_spec.rb
359
+ - spec/tokenizers/calendars/timespan_tokenizer_spec.rb
360
+ - spec/tokenizers/numbers/number_tokenizer_spec.rb
361
+ - spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb
362
+ - spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb
363
+ - spec/utils/code_points_spec.rb
364
+ - spec/utils/interpolation_spec.rb
365
+ - spec/utils/range_set_spec.rb
366
+ - spec/utils/regexp_ast_spec.rb
367
+ - spec/utils/regexp_sampler_spec.rb
368
+ - spec/utils/yaml/t.gif
369
+ - spec/utils/yaml/t.yaml
370
+ - spec/utils/yaml/yaml_spec.rb
198
371
  - resources/collation/FractionalUCA_SHORT.txt
199
372
  - resources/collation/tailoring/af.yml
200
373
  - resources/collation/tailoring/ar.yml
@@ -308,8 +481,8 @@ files:
308
481
  - resources/custom/locales/da/units.yml
309
482
  - resources/custom/locales/de/units.yml
310
483
  - resources/custom/locales/el/units.yml
311
- - resources/custom/locales/en-GB/units.yml
312
484
  - resources/custom/locales/en/units.yml
485
+ - resources/custom/locales/en-GB/units.yml
313
486
  - resources/custom/locales/es/units.yml
314
487
  - resources/custom/locales/eu/units.yml
315
488
  - resources/custom/locales/fa/units.yml
@@ -345,8 +518,8 @@ files:
345
518
  - resources/custom/locales/uk/units.yml
346
519
  - resources/custom/locales/ur/units.yml
347
520
  - resources/custom/locales/vi/units.yml
348
- - resources/custom/locales/zh-Hant/units.yml
349
521
  - resources/custom/locales/zh/units.yml
522
+ - resources/custom/locales/zh-Hant/units.yml
350
523
  - resources/locales/af/calendars.yml
351
524
  - resources/locales/af/currencies.yml
352
525
  - resources/locales/af/languages.yml
@@ -457,16 +630,6 @@ files:
457
630
  - resources/locales/el/rbnf.yml
458
631
  - resources/locales/el/territories.yml
459
632
  - resources/locales/el/units.yml
460
- - resources/locales/en-GB/calendars.yml
461
- - resources/locales/en-GB/currencies.yml
462
- - resources/locales/en-GB/languages.yml
463
- - resources/locales/en-GB/layout.yml
464
- - resources/locales/en-GB/lists.yml
465
- - resources/locales/en-GB/numbers.yml
466
- - resources/locales/en-GB/plurals.yml
467
- - resources/locales/en-GB/rbnf.yml
468
- - resources/locales/en-GB/territories.yml
469
- - resources/locales/en-GB/units.yml
470
633
  - resources/locales/en/calendars.yml
471
634
  - resources/locales/en/currencies.yml
472
635
  - resources/locales/en/languages.yml
@@ -477,6 +640,16 @@ files:
477
640
  - resources/locales/en/rbnf.yml
478
641
  - resources/locales/en/territories.yml
479
642
  - resources/locales/en/units.yml
643
+ - resources/locales/en-GB/calendars.yml
644
+ - resources/locales/en-GB/currencies.yml
645
+ - resources/locales/en-GB/languages.yml
646
+ - resources/locales/en-GB/layout.yml
647
+ - resources/locales/en-GB/lists.yml
648
+ - resources/locales/en-GB/numbers.yml
649
+ - resources/locales/en-GB/plurals.yml
650
+ - resources/locales/en-GB/rbnf.yml
651
+ - resources/locales/en-GB/territories.yml
652
+ - resources/locales/en-GB/units.yml
480
653
  - resources/locales/es/calendars.yml
481
654
  - resources/locales/es/currencies.yml
482
655
  - resources/locales/es/languages.yml
@@ -827,16 +1000,6 @@ files:
827
1000
  - resources/locales/vi/rbnf.yml
828
1001
  - resources/locales/vi/territories.yml
829
1002
  - resources/locales/vi/units.yml
830
- - resources/locales/zh-Hant/calendars.yml
831
- - resources/locales/zh-Hant/currencies.yml
832
- - resources/locales/zh-Hant/languages.yml
833
- - resources/locales/zh-Hant/layout.yml
834
- - resources/locales/zh-Hant/lists.yml
835
- - resources/locales/zh-Hant/numbers.yml
836
- - resources/locales/zh-Hant/plurals.yml
837
- - resources/locales/zh-Hant/rbnf.yml
838
- - resources/locales/zh-Hant/territories.yml
839
- - resources/locales/zh-Hant/units.yml
840
1003
  - resources/locales/zh/calendars.yml
841
1004
  - resources/locales/zh/currencies.yml
842
1005
  - resources/locales/zh/languages.yml
@@ -847,6 +1010,16 @@ files:
847
1010
  - resources/locales/zh/rbnf.yml
848
1011
  - resources/locales/zh/territories.yml
849
1012
  - resources/locales/zh/units.yml
1013
+ - resources/locales/zh-Hant/calendars.yml
1014
+ - resources/locales/zh-Hant/currencies.yml
1015
+ - resources/locales/zh-Hant/languages.yml
1016
+ - resources/locales/zh-Hant/layout.yml
1017
+ - resources/locales/zh-Hant/lists.yml
1018
+ - resources/locales/zh-Hant/numbers.yml
1019
+ - resources/locales/zh-Hant/plurals.yml
1020
+ - resources/locales/zh-Hant/rbnf.yml
1021
+ - resources/locales/zh-Hant/territories.yml
1022
+ - resources/locales/zh-Hant/units.yml
850
1023
  - resources/shared/currency_digits_and_rounding.yml
851
1024
  - resources/shared/iso_currency_symbols.yml
852
1025
  - resources/shared/language_codes_table.dump
@@ -864,6 +1037,14 @@ files:
864
1037
  - resources/uli/segments/pt.yml
865
1038
  - resources/uli/segments/ru.yml
866
1039
  - resources/unicode_data/blocks.yml
1040
+ - resources/unicode_data/canonical_compositions.yml
1041
+ - resources/unicode_data/casefolding.yml
1042
+ - resources/unicode_data/composition_exclusions.yml
1043
+ - resources/unicode_data/hangul_blocks.yml
1044
+ - resources/unicode_data/nfc_quick_check.yml
1045
+ - resources/unicode_data/nfd_quick_check.yml
1046
+ - resources/unicode_data/nfkc_quick_check.yml
1047
+ - resources/unicode_data/nfkd_quick_check.yml
867
1048
  - resources/unicode_data/blocks/aegean_numbers.yml
868
1049
  - resources/unicode_data/blocks/alchemical_symbols.yml
869
1050
  - resources/unicode_data/blocks/alphabetic_presentation_forms.yml
@@ -1084,199 +1265,24 @@ files:
1084
1265
  - resources/unicode_data/blocks/yi_radicals.yml
1085
1266
  - resources/unicode_data/blocks/yi_syllables.yml
1086
1267
  - resources/unicode_data/blocks/yijing_hexagram_symbols.yml
1087
- - resources/unicode_data/canonical_compositions.yml
1088
- - resources/unicode_data/casefolding.yml
1089
- - resources/unicode_data/composition_exclusions.yml
1090
- - resources/unicode_data/hangul_blocks.yml
1091
1268
  - resources/unicode_data/indices/bidi_class.yml
1092
1269
  - resources/unicode_data/indices/bidi_mirrored.yml
1093
1270
  - resources/unicode_data/indices/category.yml
1094
1271
  - resources/unicode_data/indices/keys.yml
1095
- - resources/unicode_data/nfc_quick_check.yml
1096
- - resources/unicode_data/nfd_quick_check.yml
1097
- - resources/unicode_data/nfkc_quick_check.yml
1098
- - resources/unicode_data/nfkd_quick_check.yml
1099
1272
  - resources/unicode_data/properties/line_break.yml
1100
1273
  - resources/unicode_data/properties/sentence_break.yml
1101
1274
  - resources/unicode_data/properties/word_break.yml
1102
- - spec/bidi/bidi_spec.rb
1103
- - spec/bidi/classpath_bidi_test.txt
1104
- - spec/collation/CollationTest_CLDR_NON_IGNORABLE_Short.txt
1105
- - spec/collation/collation_spec.rb
1106
- - spec/collation/collator_spec.rb
1107
- - spec/collation/implicit_collation_elements_spec.rb
1108
- - spec/collation/sort_key_builder_spec.rb
1109
- - spec/collation/tailoring_spec.rb
1110
- - spec/collation/tailoring_tests/af.txt
1111
- - spec/collation/tailoring_tests/ar.txt
1112
- - spec/collation/tailoring_tests/ca.txt
1113
- - spec/collation/tailoring_tests/cs.txt
1114
- - spec/collation/tailoring_tests/da.txt
1115
- - spec/collation/tailoring_tests/de.txt
1116
- - spec/collation/tailoring_tests/el.txt
1117
- - spec/collation/tailoring_tests/en.txt
1118
- - spec/collation/tailoring_tests/es.txt
1119
- - spec/collation/tailoring_tests/eu.txt
1120
- - spec/collation/tailoring_tests/fa.txt
1121
- - spec/collation/tailoring_tests/fi.txt
1122
- - spec/collation/tailoring_tests/fil.txt
1123
- - spec/collation/tailoring_tests/fr.txt
1124
- - spec/collation/tailoring_tests/he.txt
1125
- - spec/collation/tailoring_tests/hi.txt
1126
- - spec/collation/tailoring_tests/hu.txt
1127
- - spec/collation/tailoring_tests/id.txt
1128
- - spec/collation/tailoring_tests/it.txt
1129
- - spec/collation/tailoring_tests/ja.txt
1130
- - spec/collation/tailoring_tests/ko.txt
1131
- - spec/collation/tailoring_tests/ms.txt
1132
- - spec/collation/tailoring_tests/nb.txt
1133
- - spec/collation/tailoring_tests/nl.txt
1134
- - spec/collation/tailoring_tests/pl.txt
1135
- - spec/collation/tailoring_tests/pt.txt
1136
- - spec/collation/tailoring_tests/ru.txt
1137
- - spec/collation/tailoring_tests/sv.txt
1138
- - spec/collation/tailoring_tests/th.txt
1139
- - spec/collation/tailoring_tests/tr.txt
1140
- - spec/collation/tailoring_tests/uk.txt
1141
- - spec/collation/tailoring_tests/ur.txt
1142
- - spec/collation/tailoring_tests/zh-Hant.txt
1143
- - spec/collation/tailoring_tests/zh.txt
1144
- - spec/collation/trie_builder_spec.rb
1145
- - spec/collation/trie_dumps_spec.rb
1146
- - spec/collation/trie_loader_spec.rb
1147
- - spec/collation/trie_spec.rb
1148
- - spec/collation/trie_with_fallback_spec.rb
1149
- - spec/core_ext_spec.rb
1150
- - spec/data_readers/additional_date_format_selector_spec.rb
1151
- - spec/data_readers/date_time_data_reader_spec.rb
1152
- - spec/data_readers/number_data_reader_spec.rb
1153
- - spec/data_readers/timespan_data_reader.rb
1154
- - spec/formatters/calendars/datetime_formatter_spec.rb
1155
- - spec/formatters/list_formatter_spec.rb
1156
- - spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb
1157
- - spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb
1158
- - spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb
1159
- - spec/formatters/numbers/currency_formatter_spec.rb
1160
- - spec/formatters/numbers/decimal_formatter_spec.rb
1161
- - spec/formatters/numbers/helpers/fraction_spec.rb
1162
- - spec/formatters/numbers/helpers/integer_spec.rb
1163
- - spec/formatters/numbers/number_formatter_spec.rb
1164
- - spec/formatters/numbers/percent_formatter_spec.rb
1165
- - spec/formatters/numbers/rbnf/allowed_failures.yml
1166
- - spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml
1167
- - spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml
1168
- - spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml
1169
- - spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml
1170
- - spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml
1171
- - spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml
1172
- - spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml
1173
- - spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml
1174
- - spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml
1175
- - spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml
1176
- - spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml
1177
- - spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml
1178
- - spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml
1179
- - spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml
1180
- - spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml
1181
- - spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml
1182
- - spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml
1183
- - spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml
1184
- - spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml
1185
- - spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml
1186
- - spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml
1187
- - spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml
1188
- - spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml
1189
- - spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml
1190
- - spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml
1191
- - spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml
1192
- - spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml
1193
- - spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml
1194
- - spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml
1195
- - spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml
1196
- - spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml
1197
- - spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml
1198
- - spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml
1199
- - spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml
1200
- - spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml
1201
- - spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml
1202
- - spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml
1203
- - spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml
1204
- - spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml
1205
- - spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml
1206
- - spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml
1207
- - spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml
1208
- - spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml
1209
- - spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml
1210
- - spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml
1211
- - spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml
1212
- - spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml
1213
- - spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml
1214
- - spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml
1215
- - spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml
1216
- - spec/formatters/numbers/rbnf/rbnf_spec.rb
1217
- - spec/formatters/plurals/plural_formatter_spec.rb
1218
- - spec/formatters/plurals/rules_spec.rb
1219
- - spec/localized/localized_array_spec.rb
1220
- - spec/localized/localized_date_spec.rb
1221
- - spec/localized/localized_datetime_spec.rb
1222
- - spec/localized/localized_hash_spec.rb
1223
- - spec/localized/localized_number_spec.rb
1224
- - spec/localized/localized_object_spec.rb
1225
- - spec/localized/localized_string_spec.rb
1226
- - spec/localized/localized_symbol_spec.rb
1227
- - spec/localized/localized_time_spec.rb
1228
- - spec/localized/localized_timespan_spec.rb
1229
- - spec/normalization_spec.rb
1230
- - spec/parsers/number_parser_spec.rb
1231
- - spec/parsers/parser_spec.rb
1232
- - spec/parsers/segmentation_parser_spec.rb
1233
- - spec/parsers/symbol_table_spec.rb
1234
- - spec/parsers/unicode_regex/character_class_spec.rb
1235
- - spec/parsers/unicode_regex/character_range_spec.rb
1236
- - spec/parsers/unicode_regex/character_set_spec.rb
1237
- - spec/parsers/unicode_regex/literal_spec.rb
1238
- - spec/parsers/unicode_regex/unicode_string_spec.rb
1239
- - spec/parsers/unicode_regex_parser_spec.rb
1240
- - spec/readme_spec.rb
1241
- - spec/resources/loader_spec.rb
1242
- - spec/shared/break_iterator_spec.rb
1243
- - spec/shared/calendar_spec.rb
1244
- - spec/shared/casefolder_spec.rb
1245
- - spec/shared/casefolding.txt
1246
- - spec/shared/casefolding_expected.txt
1247
- - spec/shared/code_point_spec.rb
1248
- - spec/shared/currencies_spec.rb
1249
- - spec/shared/language_codes_spec.rb
1250
- - spec/shared/languages_spec.rb
1251
- - spec/shared/numbering_system_spec.rb
1252
- - spec/shared/numbers_spec.rb
1253
- - spec/shared/phone_codes_spec.rb
1254
- - spec/shared/postal_codes_spec.rb
1255
- - spec/shared/territories_spec.rb
1256
- - spec/shared/unicode_regex_spec.rb
1257
- - spec/spec_helper.rb
1258
- - spec/tokenizers/calendars/date_tokenizer_spec.rb
1259
- - spec/tokenizers/calendars/datetime_tokenizer_spec.rb
1260
- - spec/tokenizers/calendars/time_tokenizer_spec.rb
1261
- - spec/tokenizers/calendars/timespan_tokenizer_spec.rb
1262
- - spec/tokenizers/composite_token_spec.rb
1263
- - spec/tokenizers/numbers/number_tokenizer_spec.rb
1264
- - spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb
1265
- - spec/tokenizers/token_spec.rb
1266
- - spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb
1267
- - spec/twitter_cldr_spec.rb
1268
- - spec/utils/code_points_spec.rb
1269
- - spec/utils/interpolation_spec.rb
1270
- - spec/utils/range_set_spec.rb
1271
- - spec/utils/yaml/t.gif
1272
- - spec/utils/yaml/t.yaml
1273
- - spec/utils/yaml/yaml_spec.rb
1274
- - spec/utils_spec.rb
1275
+ - Gemfile
1276
+ - History.txt
1277
+ - LICENSE
1278
+ - NOTICE
1279
+ - README.md
1280
+ - Rakefile
1275
1281
  - twitter_cldr.gemspec
1276
1282
  homepage: http://twitter.com
1277
1283
  licenses: []
1278
1284
  metadata: {}
1279
- post_install_message:
1285
+ post_install_message:
1280
1286
  rdoc_options: []
1281
1287
  require_paths:
1282
1288
  - lib
@@ -1291,10 +1297,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1291
1297
  - !ruby/object:Gem::Version
1292
1298
  version: '0'
1293
1299
  requirements: []
1294
- rubyforge_project:
1295
- rubygems_version: 2.2.2
1296
- signing_key:
1300
+ rubyforge_project:
1301
+ rubygems_version: 2.1.9
1302
+ signing_key:
1297
1303
  specification_version: 4
1298
- summary: Ruby implementation of the ICU (International Components for Unicode) that
1299
- uses the Common Locale Data Repository to format dates, plurals, and more.
1304
+ summary: Ruby implementation of the ICU (International Components for Unicode) that uses the Common Locale Data Repository to format dates, plurals, and more.
1300
1305
  test_files: []