twitter_cldr 3.0.5 → 3.0.6
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 +8 -8
- data/History.txt +4 -0
- data/Rakefile +3 -3
- data/lib/twitter_cldr/resources/download.rb +4 -0
- data/lib/twitter_cldr/version.rb +1 -1
- data/resources/collation/tailoring/en-150.yml +4 -0
- data/resources/collation/tailoring/es-419.yml +4 -0
- data/resources/collation/tries/en-150.dump +0 -0
- data/resources/collation/tries/es-419.dump +0 -0
- data/resources/locales/en-150/calendars.yml +208 -0
- data/resources/locales/en-150/currencies.yml +953 -0
- data/resources/locales/en-150/languages.yml +583 -0
- data/resources/locales/en-150/layout.yml +5 -0
- data/resources/locales/en-150/lists.yml +23 -0
- data/resources/locales/en-150/numbers.yml +62 -0
- data/resources/locales/en-150/plurals.yml +5 -0
- data/resources/locales/en-150/rbnf.yml +4 -0
- data/resources/locales/en-150/territories.yml +264 -0
- data/resources/locales/en-150/units.yml +108 -0
- data/resources/locales/es-419/calendars.yml +290 -0
- data/resources/locales/es-419/currencies.yml +953 -0
- data/resources/locales/es-419/languages.yml +583 -0
- data/resources/locales/es-419/layout.yml +5 -0
- data/resources/locales/es-419/lists.yml +23 -0
- data/resources/locales/es-419/numbers.yml +62 -0
- data/resources/locales/es-419/plurals.yml +4 -0
- data/resources/locales/es-419/rbnf.yml +1195 -0
- data/resources/locales/es-419/territories.yml +264 -0
- data/resources/locales/es-419/units.yml +108 -0
- data/spec/formatters/numbers/rbnf/locales/en-150/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/es-419/rbnf_test.yml +1642 -0
- metadata +28 -2
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.
|
4
|
+
version: 3.0.6
|
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-07-
|
11
|
+
date: 2014-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -212,6 +212,7 @@ files:
|
|
212
212
|
- resources/collation/tailoring/de-CH.yml
|
213
213
|
- resources/collation/tailoring/de.yml
|
214
214
|
- resources/collation/tailoring/el.yml
|
215
|
+
- resources/collation/tailoring/en-150.yml
|
215
216
|
- resources/collation/tailoring/en-AU.yml
|
216
217
|
- resources/collation/tailoring/en-CA.yml
|
217
218
|
- resources/collation/tailoring/en-GB.yml
|
@@ -219,6 +220,7 @@ files:
|
|
219
220
|
- resources/collation/tailoring/en-SG.yml
|
220
221
|
- resources/collation/tailoring/en-ZA.yml
|
221
222
|
- resources/collation/tailoring/en.yml
|
223
|
+
- resources/collation/tailoring/es-419.yml
|
222
224
|
- resources/collation/tailoring/es-CO.yml
|
223
225
|
- resources/collation/tailoring/es-MX.yml
|
224
226
|
- resources/collation/tailoring/es-US.yml
|
@@ -276,6 +278,7 @@ files:
|
|
276
278
|
- resources/collation/tries/de.dump
|
277
279
|
- resources/collation/tries/default.dump
|
278
280
|
- resources/collation/tries/el.dump
|
281
|
+
- resources/collation/tries/en-150.dump
|
279
282
|
- resources/collation/tries/en-AU.dump
|
280
283
|
- resources/collation/tries/en-CA.dump
|
281
284
|
- resources/collation/tries/en-GB.dump
|
@@ -283,6 +286,7 @@ files:
|
|
283
286
|
- resources/collation/tries/en-SG.dump
|
284
287
|
- resources/collation/tries/en-ZA.dump
|
285
288
|
- resources/collation/tries/en.dump
|
289
|
+
- resources/collation/tries/es-419.dump
|
286
290
|
- resources/collation/tries/es-CO.dump
|
287
291
|
- resources/collation/tries/es-MX.dump
|
288
292
|
- resources/collation/tries/es-US.dump
|
@@ -497,6 +501,16 @@ files:
|
|
497
501
|
- resources/locales/el/rbnf.yml
|
498
502
|
- resources/locales/el/territories.yml
|
499
503
|
- resources/locales/el/units.yml
|
504
|
+
- resources/locales/en-150/calendars.yml
|
505
|
+
- resources/locales/en-150/currencies.yml
|
506
|
+
- resources/locales/en-150/languages.yml
|
507
|
+
- resources/locales/en-150/layout.yml
|
508
|
+
- resources/locales/en-150/lists.yml
|
509
|
+
- resources/locales/en-150/numbers.yml
|
510
|
+
- resources/locales/en-150/plurals.yml
|
511
|
+
- resources/locales/en-150/rbnf.yml
|
512
|
+
- resources/locales/en-150/territories.yml
|
513
|
+
- resources/locales/en-150/units.yml
|
500
514
|
- resources/locales/en-AU/calendars.yml
|
501
515
|
- resources/locales/en-AU/currencies.yml
|
502
516
|
- resources/locales/en-AU/languages.yml
|
@@ -567,6 +581,16 @@ files:
|
|
567
581
|
- resources/locales/en/rbnf.yml
|
568
582
|
- resources/locales/en/territories.yml
|
569
583
|
- resources/locales/en/units.yml
|
584
|
+
- resources/locales/es-419/calendars.yml
|
585
|
+
- resources/locales/es-419/currencies.yml
|
586
|
+
- resources/locales/es-419/languages.yml
|
587
|
+
- resources/locales/es-419/layout.yml
|
588
|
+
- resources/locales/es-419/lists.yml
|
589
|
+
- resources/locales/es-419/numbers.yml
|
590
|
+
- resources/locales/es-419/plurals.yml
|
591
|
+
- resources/locales/es-419/rbnf.yml
|
592
|
+
- resources/locales/es-419/territories.yml
|
593
|
+
- resources/locales/es-419/units.yml
|
570
594
|
- resources/locales/es-CO/calendars.yml
|
571
595
|
- resources/locales/es-CO/currencies.yml
|
572
596
|
- resources/locales/es-CO/languages.yml
|
@@ -1335,6 +1359,7 @@ files:
|
|
1335
1359
|
- spec/formatters/numbers/rbnf/locales/de-CH/rbnf_test.yml
|
1336
1360
|
- spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml
|
1337
1361
|
- spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml
|
1362
|
+
- spec/formatters/numbers/rbnf/locales/en-150/rbnf_test.yml
|
1338
1363
|
- spec/formatters/numbers/rbnf/locales/en-AU/rbnf_test.yml
|
1339
1364
|
- spec/formatters/numbers/rbnf/locales/en-CA/rbnf_test.yml
|
1340
1365
|
- spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml
|
@@ -1342,6 +1367,7 @@ files:
|
|
1342
1367
|
- spec/formatters/numbers/rbnf/locales/en-SG/rbnf_test.yml
|
1343
1368
|
- spec/formatters/numbers/rbnf/locales/en-ZA/rbnf_test.yml
|
1344
1369
|
- spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml
|
1370
|
+
- spec/formatters/numbers/rbnf/locales/es-419/rbnf_test.yml
|
1345
1371
|
- spec/formatters/numbers/rbnf/locales/es-CO/rbnf_test.yml
|
1346
1372
|
- spec/formatters/numbers/rbnf/locales/es-MX/rbnf_test.yml
|
1347
1373
|
- spec/formatters/numbers/rbnf/locales/es-US/rbnf_test.yml
|