twitter_cldr 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1df9a482380e89b109e3c6aafc83b22fdf955d8a
4
- data.tar.gz: 18794b8984334dc19d50d1932f7bcc1d3099b599
3
+ metadata.gz: d66b9de7cc80964cf816c2981bf6aac51ec26134
4
+ data.tar.gz: e5039d2b57b98ea896830872a6d6e2ea72229d9f
5
5
  SHA512:
6
- metadata.gz: 67c43f3ac51d2828ce553a1320cc6b53aa3fa4f4a58458181fe3bcc8037cc3df054d43d16176701a9a60407f27799e305c62d9ca5a349b0ed0bd65b2f927ef18
7
- data.tar.gz: 1545c52733ede38683d755ca08953f5c6b6608043a5b184b06556a1cc11d9da482001d4879c72d1cc934c2f2906693d40176c9526d34e804b0667f9738de18f7
6
+ metadata.gz: ba0506579dd20f7d92d480c4d46834bb25eae55a622e3bb28ffdb59cc3039a9c74f7571072a4b38686620e56b7a7c8fccade116a9ce4cfd5e16c269ad6819c66
7
+ data.tar.gz: 06a830ff2fa877e6ee2e98d0d3acbfced0e7529181418c247e56b07980750acd364cbdc93fbf247218f022ee3557fdae0b5f92f228e2cca1abae52fffb363ee2
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 3.0.1
2
+
3
+ * Fixing abbreviated timespan formats for en-GB (backport from 2.4.3).
4
+
1
5
  == 3.0.0
2
6
 
3
7
  * Adding maximum_level option to SortKeyBuilder to limit the size of collation sort keys (@jrochkind).
@@ -11,6 +15,10 @@
11
15
  * Text segmentation by sentence (word and line support coming soon).
12
16
  * Executable README.
13
17
 
18
+ == 2.4.3
19
+
20
+ * Fixing abbreviated timespan formats for en-GB.
21
+
14
22
  == 2.4.2
15
23
 
16
24
  * Fixing non-quoted symbol error in en-GB plural resource file.
@@ -4,5 +4,5 @@
4
4
  # http://www.apache.org/licenses/LICENSE-2.0
5
5
 
6
6
  module TwitterCldr
7
- VERSION = "3.0.0"
7
+ VERSION = "3.0.1"
8
8
  end
@@ -1,5 +1,5 @@
1
1
  ---
2
- :en:
2
+ :en-GB:
3
3
  :units:
4
4
  :day:
5
5
  :abbreviated:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twitter_cldr
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Dutro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-07 00:00:00.000000000 Z
11
+ date: 2014-04-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -60,6 +60,14 @@ executables: []
60
60
  extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
+ - Gemfile
64
+ - History.txt
65
+ - LICENSE
66
+ - NOTICE
67
+ - README.md
68
+ - Rakefile
69
+ - lib/twitter_cldr.rb
70
+ - lib/twitter_cldr/collation.rb
63
71
  - lib/twitter_cldr/collation/collator.rb
64
72
  - lib/twitter_cldr/collation/implicit_collation_elements.rb
65
73
  - lib/twitter_cldr/collation/sort_key_builder.rb
@@ -67,8 +75,8 @@ files:
67
75
  - lib/twitter_cldr/collation/trie_builder.rb
68
76
  - lib/twitter_cldr/collation/trie_loader.rb
69
77
  - lib/twitter_cldr/collation/trie_with_fallback.rb
70
- - lib/twitter_cldr/collation.rb
71
78
  - lib/twitter_cldr/core_ext.rb
79
+ - lib/twitter_cldr/data_readers.rb
72
80
  - lib/twitter_cldr/data_readers/additional_date_format_selector.rb
73
81
  - lib/twitter_cldr/data_readers/calendar_data_reader.rb
74
82
  - lib/twitter_cldr/data_readers/data_reader.rb
@@ -77,11 +85,12 @@ files:
77
85
  - lib/twitter_cldr/data_readers/number_data_reader.rb
78
86
  - lib/twitter_cldr/data_readers/time_data_reader.rb
79
87
  - lib/twitter_cldr/data_readers/timespan_data_reader.rb
80
- - lib/twitter_cldr/data_readers.rb
88
+ - lib/twitter_cldr/formatters.rb
81
89
  - lib/twitter_cldr/formatters/calendars/date_time_formatter.rb
82
90
  - lib/twitter_cldr/formatters/calendars/timespan_formatter.rb
83
91
  - lib/twitter_cldr/formatters/formatter.rb
84
92
  - lib/twitter_cldr/formatters/list_formatter.rb
93
+ - lib/twitter_cldr/formatters/numbers.rb
85
94
  - lib/twitter_cldr/formatters/numbers/abbreviated/abbreviated_number_formatter.rb
86
95
  - lib/twitter_cldr/formatters/numbers/abbreviated/long_decimal_formatter.rb
87
96
  - lib/twitter_cldr/formatters/numbers/abbreviated/short_decimal_formatter.rb
@@ -92,6 +101,7 @@ files:
92
101
  - lib/twitter_cldr/formatters/numbers/helpers/integer.rb
93
102
  - lib/twitter_cldr/formatters/numbers/number_formatter.rb
94
103
  - lib/twitter_cldr/formatters/numbers/percent_formatter.rb
104
+ - lib/twitter_cldr/formatters/numbers/rbnf.rb
95
105
  - lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb
96
106
  - lib/twitter_cldr/formatters/numbers/rbnf/post_processors/chinese.rb
97
107
  - lib/twitter_cldr/formatters/numbers/rbnf/rule.rb
@@ -99,12 +109,10 @@ files:
99
109
  - lib/twitter_cldr/formatters/numbers/rbnf/rule_parser.rb
100
110
  - lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb
101
111
  - lib/twitter_cldr/formatters/numbers/rbnf/substitution.rb
102
- - lib/twitter_cldr/formatters/numbers/rbnf.rb
103
- - lib/twitter_cldr/formatters/numbers.rb
112
+ - lib/twitter_cldr/formatters/plurals.rb
104
113
  - lib/twitter_cldr/formatters/plurals/plural_formatter.rb
105
114
  - lib/twitter_cldr/formatters/plurals/rules.rb
106
- - lib/twitter_cldr/formatters/plurals.rb
107
- - lib/twitter_cldr/formatters.rb
115
+ - lib/twitter_cldr/localized.rb
108
116
  - lib/twitter_cldr/localized/localized_array.rb
109
117
  - lib/twitter_cldr/localized/localized_date.rb
110
118
  - lib/twitter_cldr/localized/localized_datetime.rb
@@ -115,8 +123,8 @@ files:
115
123
  - lib/twitter_cldr/localized/localized_symbol.rb
116
124
  - lib/twitter_cldr/localized/localized_time.rb
117
125
  - lib/twitter_cldr/localized/localized_timespan.rb
118
- - lib/twitter_cldr/localized.rb
119
126
  - lib/twitter_cldr/normalization.rb
127
+ - lib/twitter_cldr/parsers.rb
120
128
  - lib/twitter_cldr/parsers/number_parser.rb
121
129
  - lib/twitter_cldr/parsers/parser.rb
122
130
  - lib/twitter_cldr/parsers/segmentation_parser.rb
@@ -128,7 +136,7 @@ files:
128
136
  - lib/twitter_cldr/parsers/unicode_regex/literal.rb
129
137
  - lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb
130
138
  - lib/twitter_cldr/parsers/unicode_regex_parser.rb
131
- - lib/twitter_cldr/parsers.rb
139
+ - lib/twitter_cldr/resources.rb
132
140
  - lib/twitter_cldr/resources/bidi_test_importer.rb
133
141
  - lib/twitter_cldr/resources/canonical_compositions_updater.rb
134
142
  - lib/twitter_cldr/resources/casefolder.rb.erb
@@ -147,12 +155,12 @@ files:
147
155
  - lib/twitter_cldr/resources/rbnf_test_importer.rb
148
156
  - lib/twitter_cldr/resources/readme_renderer.rb
149
157
  - lib/twitter_cldr/resources/tailoring_importer.rb
150
- - lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb
151
158
  - lib/twitter_cldr/resources/uli.rb
159
+ - lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb
152
160
  - lib/twitter_cldr/resources/unicode_data_importer.rb
153
161
  - lib/twitter_cldr/resources/unicode_importer.rb
154
162
  - lib/twitter_cldr/resources/unicode_properties_importer.rb
155
- - lib/twitter_cldr/resources.rb
163
+ - lib/twitter_cldr/shared.rb
156
164
  - lib/twitter_cldr/shared/bidi.rb
157
165
  - lib/twitter_cldr/shared/break_iterator.rb
158
166
  - lib/twitter_cldr/shared/calendar.rb
@@ -168,7 +176,7 @@ files:
168
176
  - lib/twitter_cldr/shared/territories.rb
169
177
  - lib/twitter_cldr/shared/timezones.rb
170
178
  - lib/twitter_cldr/shared/unicode_regex.rb
171
- - lib/twitter_cldr/shared.rb
179
+ - lib/twitter_cldr/tokenizers.rb
172
180
  - lib/twitter_cldr/tokenizers/calendars/date_time_tokenizer.rb
173
181
  - lib/twitter_cldr/tokenizers/calendars/date_tokenizer.rb
174
182
  - lib/twitter_cldr/tokenizers/calendars/time_tokenizer.rb
@@ -181,187 +189,12 @@ files:
181
189
  - lib/twitter_cldr/tokenizers/token.rb
182
190
  - lib/twitter_cldr/tokenizers/tokenizer.rb
183
191
  - lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb
184
- - lib/twitter_cldr/tokenizers.rb
192
+ - lib/twitter_cldr/utils.rb
185
193
  - lib/twitter_cldr/utils/code_points.rb
186
194
  - lib/twitter_cldr/utils/interpolation.rb
187
195
  - lib/twitter_cldr/utils/range_set.rb
188
196
  - lib/twitter_cldr/utils/yaml.rb
189
- - lib/twitter_cldr/utils.rb
190
197
  - lib/twitter_cldr/version.rb
191
- - lib/twitter_cldr.rb
192
- - spec/bidi/bidi_spec.rb
193
- - spec/bidi/classpath_bidi_test.txt
194
- - spec/collation/collation_spec.rb
195
- - spec/collation/CollationTest_CLDR_NON_IGNORABLE_Short.txt
196
- - spec/collation/collator_spec.rb
197
- - spec/collation/implicit_collation_elements_spec.rb
198
- - spec/collation/sort_key_builder_spec.rb
199
- - spec/collation/tailoring_spec.rb
200
- - spec/collation/tailoring_tests/af.txt
201
- - spec/collation/tailoring_tests/ar.txt
202
- - spec/collation/tailoring_tests/ca.txt
203
- - spec/collation/tailoring_tests/cs.txt
204
- - spec/collation/tailoring_tests/da.txt
205
- - spec/collation/tailoring_tests/de.txt
206
- - spec/collation/tailoring_tests/el.txt
207
- - spec/collation/tailoring_tests/en.txt
208
- - spec/collation/tailoring_tests/es.txt
209
- - spec/collation/tailoring_tests/eu.txt
210
- - spec/collation/tailoring_tests/fa.txt
211
- - spec/collation/tailoring_tests/fi.txt
212
- - spec/collation/tailoring_tests/fil.txt
213
- - spec/collation/tailoring_tests/fr.txt
214
- - spec/collation/tailoring_tests/he.txt
215
- - spec/collation/tailoring_tests/hi.txt
216
- - spec/collation/tailoring_tests/hu.txt
217
- - spec/collation/tailoring_tests/id.txt
218
- - spec/collation/tailoring_tests/it.txt
219
- - spec/collation/tailoring_tests/ja.txt
220
- - spec/collation/tailoring_tests/ko.txt
221
- - spec/collation/tailoring_tests/ms.txt
222
- - spec/collation/tailoring_tests/nb.txt
223
- - spec/collation/tailoring_tests/nl.txt
224
- - spec/collation/tailoring_tests/pl.txt
225
- - spec/collation/tailoring_tests/pt.txt
226
- - spec/collation/tailoring_tests/ru.txt
227
- - spec/collation/tailoring_tests/sv.txt
228
- - spec/collation/tailoring_tests/th.txt
229
- - spec/collation/tailoring_tests/tr.txt
230
- - spec/collation/tailoring_tests/uk.txt
231
- - spec/collation/tailoring_tests/ur.txt
232
- - spec/collation/tailoring_tests/zh-Hant.txt
233
- - spec/collation/tailoring_tests/zh.txt
234
- - spec/collation/trie_builder_spec.rb
235
- - spec/collation/trie_dumps_spec.rb
236
- - spec/collation/trie_loader_spec.rb
237
- - spec/collation/trie_spec.rb
238
- - spec/collation/trie_with_fallback_spec.rb
239
- - spec/core_ext_spec.rb
240
- - spec/data_readers/additional_date_format_selector_spec.rb
241
- - spec/data_readers/date_time_data_reader_spec.rb
242
- - spec/data_readers/number_data_reader_spec.rb
243
- - spec/data_readers/timespan_data_reader.rb
244
- - spec/formatters/calendars/datetime_formatter_spec.rb
245
- - spec/formatters/list_formatter_spec.rb
246
- - spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb
247
- - spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb
248
- - spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb
249
- - spec/formatters/numbers/currency_formatter_spec.rb
250
- - spec/formatters/numbers/decimal_formatter_spec.rb
251
- - spec/formatters/numbers/helpers/fraction_spec.rb
252
- - spec/formatters/numbers/helpers/integer_spec.rb
253
- - spec/formatters/numbers/number_formatter_spec.rb
254
- - spec/formatters/numbers/percent_formatter_spec.rb
255
- - spec/formatters/numbers/rbnf/allowed_failures.yml
256
- - spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml
257
- - spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml
258
- - spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml
259
- - spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml
260
- - spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml
261
- - spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml
262
- - spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml
263
- - spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml
264
- - spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml
265
- - spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml
266
- - spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml
267
- - spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml
268
- - spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml
269
- - spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml
270
- - spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml
271
- - spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml
272
- - spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml
273
- - spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml
274
- - spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml
275
- - spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml
276
- - spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml
277
- - spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml
278
- - spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml
279
- - spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml
280
- - spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml
281
- - spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml
282
- - spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml
283
- - spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml
284
- - spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml
285
- - spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml
286
- - spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml
287
- - spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml
288
- - spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml
289
- - spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml
290
- - spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml
291
- - spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml
292
- - spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml
293
- - spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml
294
- - spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml
295
- - spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml
296
- - spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml
297
- - spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml
298
- - spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml
299
- - spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml
300
- - spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml
301
- - spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml
302
- - spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml
303
- - spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml
304
- - spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml
305
- - spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml
306
- - spec/formatters/numbers/rbnf/rbnf_spec.rb
307
- - spec/formatters/plurals/plural_formatter_spec.rb
308
- - spec/formatters/plurals/rules_spec.rb
309
- - spec/localized/localized_array_spec.rb
310
- - spec/localized/localized_date_spec.rb
311
- - spec/localized/localized_datetime_spec.rb
312
- - spec/localized/localized_hash_spec.rb
313
- - spec/localized/localized_number_spec.rb
314
- - spec/localized/localized_object_spec.rb
315
- - spec/localized/localized_string_spec.rb
316
- - spec/localized/localized_symbol_spec.rb
317
- - spec/localized/localized_time_spec.rb
318
- - spec/localized/localized_timespan_spec.rb
319
- - spec/normalization_spec.rb
320
- - spec/parsers/number_parser_spec.rb
321
- - spec/parsers/parser_spec.rb
322
- - spec/parsers/segmentation_parser_spec.rb
323
- - spec/parsers/symbol_table_spec.rb
324
- - spec/parsers/unicode_regex/character_class_spec.rb
325
- - spec/parsers/unicode_regex/character_range_spec.rb
326
- - spec/parsers/unicode_regex/character_set_spec.rb
327
- - spec/parsers/unicode_regex/literal_spec.rb
328
- - spec/parsers/unicode_regex/unicode_string_spec.rb
329
- - spec/parsers/unicode_regex_parser_spec.rb
330
- - spec/readme_spec.rb
331
- - spec/resources/loader_spec.rb
332
- - spec/shared/break_iterator_spec.rb
333
- - spec/shared/calendar_spec.rb
334
- - spec/shared/casefolder_spec.rb
335
- - spec/shared/casefolding.txt
336
- - spec/shared/casefolding_expected.txt
337
- - spec/shared/code_point_spec.rb
338
- - spec/shared/currencies_spec.rb
339
- - spec/shared/language_codes_spec.rb
340
- - spec/shared/languages_spec.rb
341
- - spec/shared/numbering_system_spec.rb
342
- - spec/shared/numbers_spec.rb
343
- - spec/shared/phone_codes_spec.rb
344
- - spec/shared/postal_codes_spec.rb
345
- - spec/shared/territories_spec.rb
346
- - spec/shared/unicode_regex_spec.rb
347
- - spec/spec_helper.rb
348
- - spec/tokenizers/calendars/date_tokenizer_spec.rb
349
- - spec/tokenizers/calendars/datetime_tokenizer_spec.rb
350
- - spec/tokenizers/calendars/time_tokenizer_spec.rb
351
- - spec/tokenizers/calendars/timespan_tokenizer_spec.rb
352
- - spec/tokenizers/composite_token_spec.rb
353
- - spec/tokenizers/numbers/number_tokenizer_spec.rb
354
- - spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb
355
- - spec/tokenizers/token_spec.rb
356
- - spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb
357
- - spec/twitter_cldr_spec.rb
358
- - spec/utils/code_points_spec.rb
359
- - spec/utils/interpolation_spec.rb
360
- - spec/utils/range_set_spec.rb
361
- - spec/utils/yaml/t.gif
362
- - spec/utils/yaml/t.yaml
363
- - spec/utils/yaml/yaml_spec.rb
364
- - spec/utils_spec.rb
365
198
  - resources/collation/FractionalUCA_SHORT.txt
366
199
  - resources/collation/tailoring/af.yml
367
200
  - resources/collation/tailoring/ar.yml
@@ -475,8 +308,8 @@ files:
475
308
  - resources/custom/locales/da/units.yml
476
309
  - resources/custom/locales/de/units.yml
477
310
  - resources/custom/locales/el/units.yml
478
- - resources/custom/locales/en/units.yml
479
311
  - resources/custom/locales/en-GB/units.yml
312
+ - resources/custom/locales/en/units.yml
480
313
  - resources/custom/locales/es/units.yml
481
314
  - resources/custom/locales/eu/units.yml
482
315
  - resources/custom/locales/fa/units.yml
@@ -512,8 +345,8 @@ files:
512
345
  - resources/custom/locales/uk/units.yml
513
346
  - resources/custom/locales/ur/units.yml
514
347
  - resources/custom/locales/vi/units.yml
515
- - resources/custom/locales/zh/units.yml
516
348
  - resources/custom/locales/zh-Hant/units.yml
349
+ - resources/custom/locales/zh/units.yml
517
350
  - resources/locales/af/calendars.yml
518
351
  - resources/locales/af/currencies.yml
519
352
  - resources/locales/af/languages.yml
@@ -624,16 +457,6 @@ files:
624
457
  - resources/locales/el/rbnf.yml
625
458
  - resources/locales/el/territories.yml
626
459
  - resources/locales/el/units.yml
627
- - resources/locales/en/calendars.yml
628
- - resources/locales/en/currencies.yml
629
- - resources/locales/en/languages.yml
630
- - resources/locales/en/layout.yml
631
- - resources/locales/en/lists.yml
632
- - resources/locales/en/numbers.yml
633
- - resources/locales/en/plurals.yml
634
- - resources/locales/en/rbnf.yml
635
- - resources/locales/en/territories.yml
636
- - resources/locales/en/units.yml
637
460
  - resources/locales/en-GB/calendars.yml
638
461
  - resources/locales/en-GB/currencies.yml
639
462
  - resources/locales/en-GB/languages.yml
@@ -644,6 +467,16 @@ files:
644
467
  - resources/locales/en-GB/rbnf.yml
645
468
  - resources/locales/en-GB/territories.yml
646
469
  - resources/locales/en-GB/units.yml
470
+ - resources/locales/en/calendars.yml
471
+ - resources/locales/en/currencies.yml
472
+ - resources/locales/en/languages.yml
473
+ - resources/locales/en/layout.yml
474
+ - resources/locales/en/lists.yml
475
+ - resources/locales/en/numbers.yml
476
+ - resources/locales/en/plurals.yml
477
+ - resources/locales/en/rbnf.yml
478
+ - resources/locales/en/territories.yml
479
+ - resources/locales/en/units.yml
647
480
  - resources/locales/es/calendars.yml
648
481
  - resources/locales/es/currencies.yml
649
482
  - resources/locales/es/languages.yml
@@ -994,16 +827,6 @@ files:
994
827
  - resources/locales/vi/rbnf.yml
995
828
  - resources/locales/vi/territories.yml
996
829
  - resources/locales/vi/units.yml
997
- - resources/locales/zh/calendars.yml
998
- - resources/locales/zh/currencies.yml
999
- - resources/locales/zh/languages.yml
1000
- - resources/locales/zh/layout.yml
1001
- - resources/locales/zh/lists.yml
1002
- - resources/locales/zh/numbers.yml
1003
- - resources/locales/zh/plurals.yml
1004
- - resources/locales/zh/rbnf.yml
1005
- - resources/locales/zh/territories.yml
1006
- - resources/locales/zh/units.yml
1007
830
  - resources/locales/zh-Hant/calendars.yml
1008
831
  - resources/locales/zh-Hant/currencies.yml
1009
832
  - resources/locales/zh-Hant/languages.yml
@@ -1014,6 +837,16 @@ files:
1014
837
  - resources/locales/zh-Hant/rbnf.yml
1015
838
  - resources/locales/zh-Hant/territories.yml
1016
839
  - resources/locales/zh-Hant/units.yml
840
+ - resources/locales/zh/calendars.yml
841
+ - resources/locales/zh/currencies.yml
842
+ - resources/locales/zh/languages.yml
843
+ - resources/locales/zh/layout.yml
844
+ - resources/locales/zh/lists.yml
845
+ - resources/locales/zh/numbers.yml
846
+ - resources/locales/zh/plurals.yml
847
+ - resources/locales/zh/rbnf.yml
848
+ - resources/locales/zh/territories.yml
849
+ - resources/locales/zh/units.yml
1017
850
  - resources/shared/currency_digits_and_rounding.yml
1018
851
  - resources/shared/iso_currency_symbols.yml
1019
852
  - resources/shared/language_codes_table.dump
@@ -1030,6 +863,7 @@ files:
1030
863
  - resources/uli/segments/it.yml
1031
864
  - resources/uli/segments/pt.yml
1032
865
  - resources/uli/segments/ru.yml
866
+ - resources/unicode_data/blocks.yml
1033
867
  - resources/unicode_data/blocks/aegean_numbers.yml
1034
868
  - resources/unicode_data/blocks/alchemical_symbols.yml
1035
869
  - resources/unicode_data/blocks/alphabetic_presentation_forms.yml
@@ -1250,7 +1084,6 @@ files:
1250
1084
  - resources/unicode_data/blocks/yi_radicals.yml
1251
1085
  - resources/unicode_data/blocks/yi_syllables.yml
1252
1086
  - resources/unicode_data/blocks/yijing_hexagram_symbols.yml
1253
- - resources/unicode_data/blocks.yml
1254
1087
  - resources/unicode_data/canonical_compositions.yml
1255
1088
  - resources/unicode_data/casefolding.yml
1256
1089
  - resources/unicode_data/composition_exclusions.yml
@@ -1266,12 +1099,179 @@ files:
1266
1099
  - resources/unicode_data/properties/line_break.yml
1267
1100
  - resources/unicode_data/properties/sentence_break.yml
1268
1101
  - resources/unicode_data/properties/word_break.yml
1269
- - Gemfile
1270
- - History.txt
1271
- - LICENSE
1272
- - NOTICE
1273
- - README.md
1274
- - Rakefile
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
1275
  - twitter_cldr.gemspec
1276
1276
  homepage: http://twitter.com
1277
1277
  licenses: []
@@ -1292,7 +1292,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1292
1292
  version: '0'
1293
1293
  requirements: []
1294
1294
  rubyforge_project:
1295
- rubygems_version: 2.1.11
1295
+ rubygems_version: 2.2.2
1296
1296
  signing_key:
1297
1297
  specification_version: 4
1298
1298
  summary: Ruby implementation of the ICU (International Components for Unicode) that