twitter_cldr 3.0.7 → 3.0.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e75bddb2f0b74556c03ba205bc1638a434ea485f
4
- data.tar.gz: ce3078bb2a6a57f429c08e36900238be9e2ab4d8
3
+ metadata.gz: 3d336c0b6f46b4c7d1f0264115537a6662831e24
4
+ data.tar.gz: 832d49c1731724d17b5094e770a69726d0fd5d0c
5
5
  SHA512:
6
- metadata.gz: a61b73449810b306f3037505690f45cb19e36d23812006484f1ba201b2e401cc9ffc0956600fee0387ecc94981eef43688bfa104b1e9e3a743ffa1ab45c4a003
7
- data.tar.gz: 858f231f21e46e8df9cd6d32ad194ba73474fca48c3e8f72889bc485d58569e8a617ba00a672370463bdad014cce8860f959c96bd850681aeb8868fe179dd7e5
6
+ metadata.gz: 7ba318dda353bfdc8bbd5b54800fbdb4099354907dc73c6a8d4afacdc46748c0955535c084cf1e13db0e309b56c2819d3279bd0c6d287373b11bb0098d764929
7
+ data.tar.gz: aaad0c5df06f766990b8ec05f590d563dde0e7ee2dd7c7990c0520b1a348fcc2c00c711a8ea634dc1247e29cdfb0e0b29bf7c916587ec0cce9af52507baafaf2
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 3.0.8
2
+
3
+ * Fixing issue causing extraneous single quotes to appear in formatted dates and times.
4
+
1
5
  == 3.0.7
2
6
 
3
7
  * Territories containment support.
@@ -90,15 +90,15 @@ module TwitterCldr
90
90
 
91
91
  # for each rule, do the following...
92
92
  difference = 10 ** 30 # some absurdly large number
93
- winner = 0;
93
+ winner = 0
94
94
 
95
95
  index.upto(rules.size - 1) do |i|
96
- # "numerator" is the numerator of the fraction is the
97
- # denominator is the LCD. The numerator if the the rule's
98
- # base value is the denomiator is "numerator" times the
99
- # base value divided bythe LCD. Here we check to see if
100
- # that's an integer, and if not, how close it is to being
101
- # an integer.
96
+ # "numerator" is the numerator of the fraction, if the
97
+ # denominator is the LCD. The numerator, if the rule's
98
+ # base value is the denomiator, is "numerator" times
99
+ # the base value divided by the LCD. Here we check to
100
+ # see if that's an integer, and if not, how close it is
101
+ # to being an integer.
102
102
  temp_difference = numerator * BigDecimal.new(rules[i].base_value) % least_common_multiple
103
103
 
104
104
  # normalize the result of the above calculation: we want
@@ -32,7 +32,7 @@ module TwitterCldr
32
32
 
33
33
  def to_regexp_str
34
34
  cps = codepoints.is_a?(Array) ? codepoints : [codepoints]
35
- array_to_regex(codepoints)
35
+ array_to_regex(cps)
36
36
  end
37
37
 
38
38
  end
@@ -68,6 +68,7 @@ module TwitterCldr
68
68
  @tokenizer ||= Tokenizer.new([
69
69
  TokenRecognizer.new(:date, /\{\{date\}\}/),
70
70
  TokenRecognizer.new(:time, /\{\{time\}\}/),
71
+ TokenRecognizer.new(:plaintext, /'.*'/),
71
72
  TokenRecognizer.new(:plaintext, //)
72
73
  ])
73
74
  end
@@ -4,5 +4,5 @@
4
4
  # http://www.apache.org/licenses/LICENSE-2.0
5
5
 
6
6
  module TwitterCldr
7
- VERSION = "3.0.7"
7
+ VERSION = "3.0.8"
8
8
  end
@@ -6,6 +6,7 @@
6
6
  require 'spec_helper'
7
7
 
8
8
  include TwitterCldr::Formatters
9
+ include TwitterCldr::Tokenizers
9
10
 
10
11
  describe DateTimeFormatter do
11
12
  before(:each) do
@@ -13,6 +14,14 @@ describe DateTimeFormatter do
13
14
  @formatter = DateTimeFormatter.new(data_reader)
14
15
  end
15
16
 
17
+ describe 'plaintext' do
18
+ it "removes single quotes around plaintext tokens" do
19
+ tokens = [Token.new(:value => "'at'", :type => 'plaintext')]
20
+ date = Date.new(2010, 1, 10)
21
+ expect(@formatter.format(tokens, date, {})).to eq("at")
22
+ end
23
+ end
24
+
16
25
  describe "#day" do
17
26
  it "test: pattern d" do
18
27
  expect(@formatter.send(:day, Date.new(2010, 1, 1), 'd', 1)).to eq('1')
@@ -11,7 +11,7 @@ describe LocalizedDateTime do
11
11
 
12
12
  let(:date_time) { DateTime.new(1987, 9, 20, 22, 5) }
13
13
 
14
- describe '#initilize' do
14
+ describe '#initialize' do
15
15
  it 'sets calendar type' do
16
16
  expect(date_time.localize(:th, :calendar_type => :buddhist).calendar_type).to eq(:buddhist)
17
17
  end
@@ -40,6 +40,11 @@ describe LocalizedDateTime do
40
40
  date_time.localize(:th, :calendar_type => :buddhist).to_medium_s
41
41
  date_time.localize(:th, :calendar_type => :buddhist).to_short_s
42
42
  end
43
+
44
+ it "should remove quotes around plaintext tokens" do
45
+ # notice there are no single quotes around the "at"
46
+ expect(date_time.localize(:en).to_long_s).to eq("September 20, 1987 at 10:05:00 PM UTC")
47
+ end
43
48
  end
44
49
 
45
50
  describe "#to_date" do
@@ -18,5 +18,10 @@ describe UnicodeRegexParser::UnicodeString do
18
18
  str = UnicodeRegexParser::UnicodeString.new([97, 98, 99])
19
19
  expect(str.to_set.to_a).to eq([[97, 98, 99]..[97, 98, 99]])
20
20
  end
21
+
22
+ it "should covert the codepoints to a valid regex" do
23
+ str = UnicodeRegexParser::UnicodeString.new(97)
24
+ expect(str.to_regexp_str).to eq"(?:\\141)"
25
+ end
21
26
  end
22
27
  end
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.7
4
+ version: 3.0.8
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-08-13 00:00:00.000000000 Z
11
+ date: 2014-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -60,14 +60,6 @@ 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
71
63
  - lib/twitter_cldr/collation/collator.rb
72
64
  - lib/twitter_cldr/collation/implicit_collation_elements.rb
73
65
  - lib/twitter_cldr/collation/sort_key_builder.rb
@@ -75,8 +67,8 @@ files:
75
67
  - lib/twitter_cldr/collation/trie_builder.rb
76
68
  - lib/twitter_cldr/collation/trie_loader.rb
77
69
  - lib/twitter_cldr/collation/trie_with_fallback.rb
70
+ - lib/twitter_cldr/collation.rb
78
71
  - lib/twitter_cldr/core_ext.rb
79
- - lib/twitter_cldr/data_readers.rb
80
72
  - lib/twitter_cldr/data_readers/additional_date_format_selector.rb
81
73
  - lib/twitter_cldr/data_readers/calendar_data_reader.rb
82
74
  - lib/twitter_cldr/data_readers/data_reader.rb
@@ -85,12 +77,11 @@ files:
85
77
  - lib/twitter_cldr/data_readers/number_data_reader.rb
86
78
  - lib/twitter_cldr/data_readers/time_data_reader.rb
87
79
  - lib/twitter_cldr/data_readers/timespan_data_reader.rb
88
- - lib/twitter_cldr/formatters.rb
80
+ - lib/twitter_cldr/data_readers.rb
89
81
  - lib/twitter_cldr/formatters/calendars/date_time_formatter.rb
90
82
  - lib/twitter_cldr/formatters/calendars/timespan_formatter.rb
91
83
  - lib/twitter_cldr/formatters/formatter.rb
92
84
  - lib/twitter_cldr/formatters/list_formatter.rb
93
- - lib/twitter_cldr/formatters/numbers.rb
94
85
  - lib/twitter_cldr/formatters/numbers/abbreviated/abbreviated_number_formatter.rb
95
86
  - lib/twitter_cldr/formatters/numbers/abbreviated/long_decimal_formatter.rb
96
87
  - lib/twitter_cldr/formatters/numbers/abbreviated/short_decimal_formatter.rb
@@ -101,7 +92,6 @@ files:
101
92
  - lib/twitter_cldr/formatters/numbers/helpers/integer.rb
102
93
  - lib/twitter_cldr/formatters/numbers/number_formatter.rb
103
94
  - lib/twitter_cldr/formatters/numbers/percent_formatter.rb
104
- - lib/twitter_cldr/formatters/numbers/rbnf.rb
105
95
  - lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb
106
96
  - lib/twitter_cldr/formatters/numbers/rbnf/post_processors/chinese.rb
107
97
  - lib/twitter_cldr/formatters/numbers/rbnf/rule.rb
@@ -109,10 +99,12 @@ files:
109
99
  - lib/twitter_cldr/formatters/numbers/rbnf/rule_parser.rb
110
100
  - lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb
111
101
  - lib/twitter_cldr/formatters/numbers/rbnf/substitution.rb
112
- - lib/twitter_cldr/formatters/plurals.rb
102
+ - lib/twitter_cldr/formatters/numbers/rbnf.rb
103
+ - lib/twitter_cldr/formatters/numbers.rb
113
104
  - lib/twitter_cldr/formatters/plurals/plural_formatter.rb
114
105
  - lib/twitter_cldr/formatters/plurals/rules.rb
115
- - lib/twitter_cldr/localized.rb
106
+ - lib/twitter_cldr/formatters/plurals.rb
107
+ - lib/twitter_cldr/formatters.rb
116
108
  - lib/twitter_cldr/localized/localized_array.rb
117
109
  - lib/twitter_cldr/localized/localized_date.rb
118
110
  - lib/twitter_cldr/localized/localized_datetime.rb
@@ -123,8 +115,8 @@ files:
123
115
  - lib/twitter_cldr/localized/localized_symbol.rb
124
116
  - lib/twitter_cldr/localized/localized_time.rb
125
117
  - lib/twitter_cldr/localized/localized_timespan.rb
118
+ - lib/twitter_cldr/localized.rb
126
119
  - lib/twitter_cldr/normalization.rb
127
- - lib/twitter_cldr/parsers.rb
128
120
  - lib/twitter_cldr/parsers/number_parser.rb
129
121
  - lib/twitter_cldr/parsers/parser.rb
130
122
  - lib/twitter_cldr/parsers/segmentation_parser.rb
@@ -136,7 +128,7 @@ files:
136
128
  - lib/twitter_cldr/parsers/unicode_regex/literal.rb
137
129
  - lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb
138
130
  - lib/twitter_cldr/parsers/unicode_regex_parser.rb
139
- - lib/twitter_cldr/resources.rb
131
+ - lib/twitter_cldr/parsers.rb
140
132
  - lib/twitter_cldr/resources/bidi_test_importer.rb
141
133
  - lib/twitter_cldr/resources/canonical_compositions_updater.rb
142
134
  - lib/twitter_cldr/resources/casefolder.rb.erb
@@ -156,12 +148,12 @@ files:
156
148
  - lib/twitter_cldr/resources/readme_renderer.rb
157
149
  - lib/twitter_cldr/resources/regexp_ast_generator.rb
158
150
  - lib/twitter_cldr/resources/tailoring_importer.rb
159
- - lib/twitter_cldr/resources/uli.rb
160
151
  - lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb
152
+ - lib/twitter_cldr/resources/uli.rb
161
153
  - lib/twitter_cldr/resources/unicode_data_importer.rb
162
154
  - lib/twitter_cldr/resources/unicode_importer.rb
163
155
  - lib/twitter_cldr/resources/unicode_properties_importer.rb
164
- - lib/twitter_cldr/shared.rb
156
+ - lib/twitter_cldr/resources.rb
165
157
  - lib/twitter_cldr/shared/bidi.rb
166
158
  - lib/twitter_cldr/shared/break_iterator.rb
167
159
  - lib/twitter_cldr/shared/calendar.rb
@@ -180,7 +172,7 @@ files:
180
172
  - lib/twitter_cldr/shared/territory.rb
181
173
  - lib/twitter_cldr/shared/timezones.rb
182
174
  - lib/twitter_cldr/shared/unicode_regex.rb
183
- - lib/twitter_cldr/tokenizers.rb
175
+ - lib/twitter_cldr/shared.rb
184
176
  - lib/twitter_cldr/tokenizers/calendars/date_time_tokenizer.rb
185
177
  - lib/twitter_cldr/tokenizers/calendars/date_tokenizer.rb
186
178
  - lib/twitter_cldr/tokenizers/calendars/time_tokenizer.rb
@@ -193,14 +185,209 @@ files:
193
185
  - lib/twitter_cldr/tokenizers/token.rb
194
186
  - lib/twitter_cldr/tokenizers/tokenizer.rb
195
187
  - lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb
196
- - lib/twitter_cldr/utils.rb
188
+ - lib/twitter_cldr/tokenizers.rb
197
189
  - lib/twitter_cldr/utils/code_points.rb
198
190
  - lib/twitter_cldr/utils/interpolation.rb
199
191
  - lib/twitter_cldr/utils/range_set.rb
200
192
  - lib/twitter_cldr/utils/regexp_ast.rb
201
193
  - lib/twitter_cldr/utils/regexp_sampler.rb
202
194
  - lib/twitter_cldr/utils/yaml.rb
195
+ - lib/twitter_cldr/utils.rb
203
196
  - lib/twitter_cldr/version.rb
197
+ - lib/twitter_cldr.rb
198
+ - spec/bidi/bidi_spec.rb
199
+ - spec/bidi/classpath_bidi_test.txt
200
+ - spec/collation/collation_spec.rb
201
+ - spec/collation/CollationTest_CLDR_NON_IGNORABLE_Short.txt
202
+ - spec/collation/collator_spec.rb
203
+ - spec/collation/implicit_collation_elements_spec.rb
204
+ - spec/collation/sort_key_builder_spec.rb
205
+ - spec/collation/tailoring_spec.rb
206
+ - spec/collation/tailoring_tests/af.txt
207
+ - spec/collation/tailoring_tests/ar.txt
208
+ - spec/collation/tailoring_tests/ca.txt
209
+ - spec/collation/tailoring_tests/cs.txt
210
+ - spec/collation/tailoring_tests/da.txt
211
+ - spec/collation/tailoring_tests/de.txt
212
+ - spec/collation/tailoring_tests/el.txt
213
+ - spec/collation/tailoring_tests/en.txt
214
+ - spec/collation/tailoring_tests/es.txt
215
+ - spec/collation/tailoring_tests/eu.txt
216
+ - spec/collation/tailoring_tests/fa.txt
217
+ - spec/collation/tailoring_tests/fi.txt
218
+ - spec/collation/tailoring_tests/fil.txt
219
+ - spec/collation/tailoring_tests/fr.txt
220
+ - spec/collation/tailoring_tests/he.txt
221
+ - spec/collation/tailoring_tests/hi.txt
222
+ - spec/collation/tailoring_tests/hu.txt
223
+ - spec/collation/tailoring_tests/id.txt
224
+ - spec/collation/tailoring_tests/it.txt
225
+ - spec/collation/tailoring_tests/ja.txt
226
+ - spec/collation/tailoring_tests/ko.txt
227
+ - spec/collation/tailoring_tests/ms.txt
228
+ - spec/collation/tailoring_tests/nb.txt
229
+ - spec/collation/tailoring_tests/nl.txt
230
+ - spec/collation/tailoring_tests/pl.txt
231
+ - spec/collation/tailoring_tests/pt.txt
232
+ - spec/collation/tailoring_tests/ru.txt
233
+ - spec/collation/tailoring_tests/sv.txt
234
+ - spec/collation/tailoring_tests/th.txt
235
+ - spec/collation/tailoring_tests/tr.txt
236
+ - spec/collation/tailoring_tests/uk.txt
237
+ - spec/collation/tailoring_tests/ur.txt
238
+ - spec/collation/tailoring_tests/zh-Hant.txt
239
+ - spec/collation/tailoring_tests/zh.txt
240
+ - spec/collation/trie_builder_spec.rb
241
+ - spec/collation/trie_dumps_spec.rb
242
+ - spec/collation/trie_loader_spec.rb
243
+ - spec/collation/trie_spec.rb
244
+ - spec/collation/trie_with_fallback_spec.rb
245
+ - spec/core_ext_spec.rb
246
+ - spec/data_readers/additional_date_format_selector_spec.rb
247
+ - spec/data_readers/date_time_data_reader_spec.rb
248
+ - spec/data_readers/number_data_reader_spec.rb
249
+ - spec/data_readers/timespan_data_reader_spec.rb
250
+ - spec/formatters/calendars/datetime_formatter_spec.rb
251
+ - spec/formatters/list_formatter_spec.rb
252
+ - spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb
253
+ - spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb
254
+ - spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb
255
+ - spec/formatters/numbers/currency_formatter_spec.rb
256
+ - spec/formatters/numbers/decimal_formatter_spec.rb
257
+ - spec/formatters/numbers/helpers/fraction_spec.rb
258
+ - spec/formatters/numbers/helpers/integer_spec.rb
259
+ - spec/formatters/numbers/number_formatter_spec.rb
260
+ - spec/formatters/numbers/percent_formatter_spec.rb
261
+ - spec/formatters/numbers/rbnf/allowed_failures.yml
262
+ - spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml
263
+ - spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml
264
+ - spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml
265
+ - spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml
266
+ - spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml
267
+ - spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml
268
+ - spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml
269
+ - spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml
270
+ - spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml
271
+ - spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml
272
+ - spec/formatters/numbers/rbnf/locales/de-CH/rbnf_test.yml
273
+ - spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml
274
+ - spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml
275
+ - spec/formatters/numbers/rbnf/locales/en-150/rbnf_test.yml
276
+ - spec/formatters/numbers/rbnf/locales/en-AU/rbnf_test.yml
277
+ - spec/formatters/numbers/rbnf/locales/en-CA/rbnf_test.yml
278
+ - spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml
279
+ - spec/formatters/numbers/rbnf/locales/en-IE/rbnf_test.yml
280
+ - spec/formatters/numbers/rbnf/locales/en-SG/rbnf_test.yml
281
+ - spec/formatters/numbers/rbnf/locales/en-ZA/rbnf_test.yml
282
+ - spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml
283
+ - spec/formatters/numbers/rbnf/locales/es-419/rbnf_test.yml
284
+ - spec/formatters/numbers/rbnf/locales/es-CO/rbnf_test.yml
285
+ - spec/formatters/numbers/rbnf/locales/es-MX/rbnf_test.yml
286
+ - spec/formatters/numbers/rbnf/locales/es-US/rbnf_test.yml
287
+ - spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml
288
+ - spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml
289
+ - spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml
290
+ - spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml
291
+ - spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml
292
+ - spec/formatters/numbers/rbnf/locales/fr-BE/rbnf_test.yml
293
+ - spec/formatters/numbers/rbnf/locales/fr-CA/rbnf_test.yml
294
+ - spec/formatters/numbers/rbnf/locales/fr-CH/rbnf_test.yml
295
+ - spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml
296
+ - spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml
297
+ - spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml
298
+ - spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml
299
+ - spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml
300
+ - spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml
301
+ - spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml
302
+ - spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml
303
+ - spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml
304
+ - spec/formatters/numbers/rbnf/locales/it-CH/rbnf_test.yml
305
+ - spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml
306
+ - spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml
307
+ - spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml
308
+ - spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml
309
+ - spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml
310
+ - spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml
311
+ - spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml
312
+ - spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml
313
+ - spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml
314
+ - spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml
315
+ - spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml
316
+ - spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml
317
+ - spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml
318
+ - spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml
319
+ - spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml
320
+ - spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml
321
+ - spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml
322
+ - spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml
323
+ - spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml
324
+ - spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml
325
+ - spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml
326
+ - spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml
327
+ - spec/formatters/numbers/rbnf/rbnf_spec.rb
328
+ - spec/formatters/plurals/plural_formatter_spec.rb
329
+ - spec/formatters/plurals/rules_spec.rb
330
+ - spec/localized/localized_array_spec.rb
331
+ - spec/localized/localized_date_spec.rb
332
+ - spec/localized/localized_datetime_spec.rb
333
+ - spec/localized/localized_hash_spec.rb
334
+ - spec/localized/localized_number_spec.rb
335
+ - spec/localized/localized_object_spec.rb
336
+ - spec/localized/localized_string_spec.rb
337
+ - spec/localized/localized_symbol_spec.rb
338
+ - spec/localized/localized_time_spec.rb
339
+ - spec/localized/localized_timespan_spec.rb
340
+ - spec/normalization_spec.rb
341
+ - spec/parsers/number_parser_spec.rb
342
+ - spec/parsers/parser_spec.rb
343
+ - spec/parsers/segmentation_parser_spec.rb
344
+ - spec/parsers/symbol_table_spec.rb
345
+ - spec/parsers/unicode_regex/character_class_spec.rb
346
+ - spec/parsers/unicode_regex/character_range_spec.rb
347
+ - spec/parsers/unicode_regex/character_set_spec.rb
348
+ - spec/parsers/unicode_regex/literal_spec.rb
349
+ - spec/parsers/unicode_regex/unicode_string_spec.rb
350
+ - spec/parsers/unicode_regex_parser_spec.rb
351
+ - spec/readme_spec.rb
352
+ - spec/resources/loader_spec.rb
353
+ - spec/shared/break_iterator_spec.rb
354
+ - spec/shared/calendar_spec.rb
355
+ - spec/shared/casefolder_spec.rb
356
+ - spec/shared/casefolding.txt
357
+ - spec/shared/casefolding_expected.txt
358
+ - spec/shared/code_point_spec.rb
359
+ - spec/shared/currencies_spec.rb
360
+ - spec/shared/language_codes_spec.rb
361
+ - spec/shared/languages_spec.rb
362
+ - spec/shared/numbering_system_spec.rb
363
+ - spec/shared/numbers_spec.rb
364
+ - spec/shared/phone_codes_spec.rb
365
+ - spec/shared/postal_code_generator_spec.rb
366
+ - spec/shared/postal_codes_spec.rb
367
+ - spec/shared/territories_containment_spec.rb
368
+ - spec/shared/territories_spec.rb
369
+ - spec/shared/territory_spec.rb
370
+ - spec/shared/unicode_regex_spec.rb
371
+ - spec/spec_helper.rb
372
+ - spec/tokenizers/calendars/date_tokenizer_spec.rb
373
+ - spec/tokenizers/calendars/datetime_tokenizer_spec.rb
374
+ - spec/tokenizers/calendars/time_tokenizer_spec.rb
375
+ - spec/tokenizers/calendars/timespan_tokenizer_spec.rb
376
+ - spec/tokenizers/composite_token_spec.rb
377
+ - spec/tokenizers/numbers/number_tokenizer_spec.rb
378
+ - spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb
379
+ - spec/tokenizers/token_spec.rb
380
+ - spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb
381
+ - spec/twitter_cldr_spec.rb
382
+ - spec/utils/code_points_spec.rb
383
+ - spec/utils/interpolation_spec.rb
384
+ - spec/utils/range_set_spec.rb
385
+ - spec/utils/regexp_ast_spec.rb
386
+ - spec/utils/regexp_sampler_spec.rb
387
+ - spec/utils/yaml/t.gif
388
+ - spec/utils/yaml/t.yaml
389
+ - spec/utils/yaml/yaml_spec.rb
390
+ - spec/utils_spec.rb
204
391
  - resources/collation/FractionalUCA_SHORT.txt
205
392
  - resources/collation/tailoring/af.yml
206
393
  - resources/collation/tailoring/ar.yml
@@ -344,8 +531,8 @@ files:
344
531
  - resources/custom/locales/da/units.yml
345
532
  - resources/custom/locales/de/units.yml
346
533
  - resources/custom/locales/el/units.yml
347
- - resources/custom/locales/en-GB/units.yml
348
534
  - resources/custom/locales/en/units.yml
535
+ - resources/custom/locales/en-GB/units.yml
349
536
  - resources/custom/locales/es/units.yml
350
537
  - resources/custom/locales/eu/units.yml
351
538
  - resources/custom/locales/fa/units.yml
@@ -381,8 +568,8 @@ files:
381
568
  - resources/custom/locales/uk/units.yml
382
569
  - resources/custom/locales/ur/units.yml
383
570
  - resources/custom/locales/vi/units.yml
384
- - resources/custom/locales/zh-Hant/units.yml
385
571
  - resources/custom/locales/zh/units.yml
572
+ - resources/custom/locales/zh-Hant/units.yml
386
573
  - resources/locales/af/calendars.yml
387
574
  - resources/locales/af/currencies.yml
388
575
  - resources/locales/af/languages.yml
@@ -473,16 +660,6 @@ files:
473
660
  - resources/locales/da/rbnf.yml
474
661
  - resources/locales/da/territories.yml
475
662
  - resources/locales/da/units.yml
476
- - resources/locales/de-CH/calendars.yml
477
- - resources/locales/de-CH/currencies.yml
478
- - resources/locales/de-CH/languages.yml
479
- - resources/locales/de-CH/layout.yml
480
- - resources/locales/de-CH/lists.yml
481
- - resources/locales/de-CH/numbers.yml
482
- - resources/locales/de-CH/plurals.yml
483
- - resources/locales/de-CH/rbnf.yml
484
- - resources/locales/de-CH/territories.yml
485
- - resources/locales/de-CH/units.yml
486
663
  - resources/locales/de/calendars.yml
487
664
  - resources/locales/de/currencies.yml
488
665
  - resources/locales/de/languages.yml
@@ -493,6 +670,16 @@ files:
493
670
  - resources/locales/de/rbnf.yml
494
671
  - resources/locales/de/territories.yml
495
672
  - resources/locales/de/units.yml
673
+ - resources/locales/de-CH/calendars.yml
674
+ - resources/locales/de-CH/currencies.yml
675
+ - resources/locales/de-CH/languages.yml
676
+ - resources/locales/de-CH/layout.yml
677
+ - resources/locales/de-CH/lists.yml
678
+ - resources/locales/de-CH/numbers.yml
679
+ - resources/locales/de-CH/plurals.yml
680
+ - resources/locales/de-CH/rbnf.yml
681
+ - resources/locales/de-CH/territories.yml
682
+ - resources/locales/de-CH/units.yml
496
683
  - resources/locales/el/calendars.yml
497
684
  - resources/locales/el/currencies.yml
498
685
  - resources/locales/el/languages.yml
@@ -503,6 +690,16 @@ files:
503
690
  - resources/locales/el/rbnf.yml
504
691
  - resources/locales/el/territories.yml
505
692
  - resources/locales/el/units.yml
693
+ - resources/locales/en/calendars.yml
694
+ - resources/locales/en/currencies.yml
695
+ - resources/locales/en/languages.yml
696
+ - resources/locales/en/layout.yml
697
+ - resources/locales/en/lists.yml
698
+ - resources/locales/en/numbers.yml
699
+ - resources/locales/en/plurals.yml
700
+ - resources/locales/en/rbnf.yml
701
+ - resources/locales/en/territories.yml
702
+ - resources/locales/en/units.yml
506
703
  - resources/locales/en-150/calendars.yml
507
704
  - resources/locales/en-150/currencies.yml
508
705
  - resources/locales/en-150/languages.yml
@@ -573,16 +770,16 @@ files:
573
770
  - resources/locales/en-ZA/rbnf.yml
574
771
  - resources/locales/en-ZA/territories.yml
575
772
  - resources/locales/en-ZA/units.yml
576
- - resources/locales/en/calendars.yml
577
- - resources/locales/en/currencies.yml
578
- - resources/locales/en/languages.yml
579
- - resources/locales/en/layout.yml
580
- - resources/locales/en/lists.yml
581
- - resources/locales/en/numbers.yml
582
- - resources/locales/en/plurals.yml
583
- - resources/locales/en/rbnf.yml
584
- - resources/locales/en/territories.yml
585
- - resources/locales/en/units.yml
773
+ - resources/locales/es/calendars.yml
774
+ - resources/locales/es/currencies.yml
775
+ - resources/locales/es/languages.yml
776
+ - resources/locales/es/layout.yml
777
+ - resources/locales/es/lists.yml
778
+ - resources/locales/es/numbers.yml
779
+ - resources/locales/es/plurals.yml
780
+ - resources/locales/es/rbnf.yml
781
+ - resources/locales/es/territories.yml
782
+ - resources/locales/es/units.yml
586
783
  - resources/locales/es-419/calendars.yml
587
784
  - resources/locales/es-419/currencies.yml
588
785
  - resources/locales/es-419/languages.yml
@@ -623,16 +820,6 @@ files:
623
820
  - resources/locales/es-US/rbnf.yml
624
821
  - resources/locales/es-US/territories.yml
625
822
  - resources/locales/es-US/units.yml
626
- - resources/locales/es/calendars.yml
627
- - resources/locales/es/currencies.yml
628
- - resources/locales/es/languages.yml
629
- - resources/locales/es/layout.yml
630
- - resources/locales/es/lists.yml
631
- - resources/locales/es/numbers.yml
632
- - resources/locales/es/plurals.yml
633
- - resources/locales/es/rbnf.yml
634
- - resources/locales/es/territories.yml
635
- - resources/locales/es/units.yml
636
823
  - resources/locales/eu/calendars.yml
637
824
  - resources/locales/eu/currencies.yml
638
825
  - resources/locales/eu/languages.yml
@@ -673,6 +860,16 @@ files:
673
860
  - resources/locales/fil/rbnf.yml
674
861
  - resources/locales/fil/territories.yml
675
862
  - resources/locales/fil/units.yml
863
+ - resources/locales/fr/calendars.yml
864
+ - resources/locales/fr/currencies.yml
865
+ - resources/locales/fr/languages.yml
866
+ - resources/locales/fr/layout.yml
867
+ - resources/locales/fr/lists.yml
868
+ - resources/locales/fr/numbers.yml
869
+ - resources/locales/fr/plurals.yml
870
+ - resources/locales/fr/rbnf.yml
871
+ - resources/locales/fr/territories.yml
872
+ - resources/locales/fr/units.yml
676
873
  - resources/locales/fr-BE/calendars.yml
677
874
  - resources/locales/fr-BE/currencies.yml
678
875
  - resources/locales/fr-BE/languages.yml
@@ -703,16 +900,6 @@ files:
703
900
  - resources/locales/fr-CH/rbnf.yml
704
901
  - resources/locales/fr-CH/territories.yml
705
902
  - resources/locales/fr-CH/units.yml
706
- - resources/locales/fr/calendars.yml
707
- - resources/locales/fr/currencies.yml
708
- - resources/locales/fr/languages.yml
709
- - resources/locales/fr/layout.yml
710
- - resources/locales/fr/lists.yml
711
- - resources/locales/fr/numbers.yml
712
- - resources/locales/fr/plurals.yml
713
- - resources/locales/fr/rbnf.yml
714
- - resources/locales/fr/territories.yml
715
- - resources/locales/fr/units.yml
716
903
  - resources/locales/ga/calendars.yml
717
904
  - resources/locales/ga/currencies.yml
718
905
  - resources/locales/ga/languages.yml
@@ -793,16 +980,6 @@ files:
793
980
  - resources/locales/is/rbnf.yml
794
981
  - resources/locales/is/territories.yml
795
982
  - resources/locales/is/units.yml
796
- - resources/locales/it-CH/calendars.yml
797
- - resources/locales/it-CH/currencies.yml
798
- - resources/locales/it-CH/languages.yml
799
- - resources/locales/it-CH/layout.yml
800
- - resources/locales/it-CH/lists.yml
801
- - resources/locales/it-CH/numbers.yml
802
- - resources/locales/it-CH/plurals.yml
803
- - resources/locales/it-CH/rbnf.yml
804
- - resources/locales/it-CH/territories.yml
805
- - resources/locales/it-CH/units.yml
806
983
  - resources/locales/it/calendars.yml
807
984
  - resources/locales/it/currencies.yml
808
985
  - resources/locales/it/languages.yml
@@ -813,6 +990,16 @@ files:
813
990
  - resources/locales/it/rbnf.yml
814
991
  - resources/locales/it/territories.yml
815
992
  - resources/locales/it/units.yml
993
+ - resources/locales/it-CH/calendars.yml
994
+ - resources/locales/it-CH/currencies.yml
995
+ - resources/locales/it-CH/languages.yml
996
+ - resources/locales/it-CH/layout.yml
997
+ - resources/locales/it-CH/lists.yml
998
+ - resources/locales/it-CH/numbers.yml
999
+ - resources/locales/it-CH/plurals.yml
1000
+ - resources/locales/it-CH/rbnf.yml
1001
+ - resources/locales/it-CH/territories.yml
1002
+ - resources/locales/it-CH/units.yml
816
1003
  - resources/locales/ja/calendars.yml
817
1004
  - resources/locales/ja/currencies.yml
818
1005
  - resources/locales/ja/languages.yml
@@ -1013,16 +1200,6 @@ files:
1013
1200
  - resources/locales/vi/rbnf.yml
1014
1201
  - resources/locales/vi/territories.yml
1015
1202
  - resources/locales/vi/units.yml
1016
- - resources/locales/zh-Hant/calendars.yml
1017
- - resources/locales/zh-Hant/currencies.yml
1018
- - resources/locales/zh-Hant/languages.yml
1019
- - resources/locales/zh-Hant/layout.yml
1020
- - resources/locales/zh-Hant/lists.yml
1021
- - resources/locales/zh-Hant/numbers.yml
1022
- - resources/locales/zh-Hant/plurals.yml
1023
- - resources/locales/zh-Hant/rbnf.yml
1024
- - resources/locales/zh-Hant/territories.yml
1025
- - resources/locales/zh-Hant/units.yml
1026
1203
  - resources/locales/zh/calendars.yml
1027
1204
  - resources/locales/zh/currencies.yml
1028
1205
  - resources/locales/zh/languages.yml
@@ -1033,6 +1210,16 @@ files:
1033
1210
  - resources/locales/zh/rbnf.yml
1034
1211
  - resources/locales/zh/territories.yml
1035
1212
  - resources/locales/zh/units.yml
1213
+ - resources/locales/zh-Hant/calendars.yml
1214
+ - resources/locales/zh-Hant/currencies.yml
1215
+ - resources/locales/zh-Hant/languages.yml
1216
+ - resources/locales/zh-Hant/layout.yml
1217
+ - resources/locales/zh-Hant/lists.yml
1218
+ - resources/locales/zh-Hant/numbers.yml
1219
+ - resources/locales/zh-Hant/plurals.yml
1220
+ - resources/locales/zh-Hant/rbnf.yml
1221
+ - resources/locales/zh-Hant/territories.yml
1222
+ - resources/locales/zh-Hant/units.yml
1036
1223
  - resources/shared/currency_digits_and_rounding.yml
1037
1224
  - resources/shared/iso_currency_symbols.yml
1038
1225
  - resources/shared/language_codes_table.dump
@@ -1050,7 +1237,6 @@ files:
1050
1237
  - resources/uli/segments/it.yml
1051
1238
  - resources/uli/segments/pt.yml
1052
1239
  - resources/uli/segments/ru.yml
1053
- - resources/unicode_data/blocks.yml
1054
1240
  - resources/unicode_data/blocks/aegean_numbers.yml
1055
1241
  - resources/unicode_data/blocks/alchemical_symbols.yml
1056
1242
  - resources/unicode_data/blocks/alphabetic_presentation_forms.yml
@@ -1271,6 +1457,7 @@ files:
1271
1457
  - resources/unicode_data/blocks/yi_radicals.yml
1272
1458
  - resources/unicode_data/blocks/yi_syllables.yml
1273
1459
  - resources/unicode_data/blocks/yijing_hexagram_symbols.yml
1460
+ - resources/unicode_data/blocks.yml
1274
1461
  - resources/unicode_data/canonical_compositions.yml
1275
1462
  - resources/unicode_data/casefolding.yml
1276
1463
  - resources/unicode_data/composition_exclusions.yml
@@ -1286,199 +1473,12 @@ files:
1286
1473
  - resources/unicode_data/properties/line_break.yml
1287
1474
  - resources/unicode_data/properties/sentence_break.yml
1288
1475
  - resources/unicode_data/properties/word_break.yml
1289
- - spec/bidi/bidi_spec.rb
1290
- - spec/bidi/classpath_bidi_test.txt
1291
- - spec/collation/CollationTest_CLDR_NON_IGNORABLE_Short.txt
1292
- - spec/collation/collation_spec.rb
1293
- - spec/collation/collator_spec.rb
1294
- - spec/collation/implicit_collation_elements_spec.rb
1295
- - spec/collation/sort_key_builder_spec.rb
1296
- - spec/collation/tailoring_spec.rb
1297
- - spec/collation/tailoring_tests/af.txt
1298
- - spec/collation/tailoring_tests/ar.txt
1299
- - spec/collation/tailoring_tests/ca.txt
1300
- - spec/collation/tailoring_tests/cs.txt
1301
- - spec/collation/tailoring_tests/da.txt
1302
- - spec/collation/tailoring_tests/de.txt
1303
- - spec/collation/tailoring_tests/el.txt
1304
- - spec/collation/tailoring_tests/en.txt
1305
- - spec/collation/tailoring_tests/es.txt
1306
- - spec/collation/tailoring_tests/eu.txt
1307
- - spec/collation/tailoring_tests/fa.txt
1308
- - spec/collation/tailoring_tests/fi.txt
1309
- - spec/collation/tailoring_tests/fil.txt
1310
- - spec/collation/tailoring_tests/fr.txt
1311
- - spec/collation/tailoring_tests/he.txt
1312
- - spec/collation/tailoring_tests/hi.txt
1313
- - spec/collation/tailoring_tests/hu.txt
1314
- - spec/collation/tailoring_tests/id.txt
1315
- - spec/collation/tailoring_tests/it.txt
1316
- - spec/collation/tailoring_tests/ja.txt
1317
- - spec/collation/tailoring_tests/ko.txt
1318
- - spec/collation/tailoring_tests/ms.txt
1319
- - spec/collation/tailoring_tests/nb.txt
1320
- - spec/collation/tailoring_tests/nl.txt
1321
- - spec/collation/tailoring_tests/pl.txt
1322
- - spec/collation/tailoring_tests/pt.txt
1323
- - spec/collation/tailoring_tests/ru.txt
1324
- - spec/collation/tailoring_tests/sv.txt
1325
- - spec/collation/tailoring_tests/th.txt
1326
- - spec/collation/tailoring_tests/tr.txt
1327
- - spec/collation/tailoring_tests/uk.txt
1328
- - spec/collation/tailoring_tests/ur.txt
1329
- - spec/collation/tailoring_tests/zh-Hant.txt
1330
- - spec/collation/tailoring_tests/zh.txt
1331
- - spec/collation/trie_builder_spec.rb
1332
- - spec/collation/trie_dumps_spec.rb
1333
- - spec/collation/trie_loader_spec.rb
1334
- - spec/collation/trie_spec.rb
1335
- - spec/collation/trie_with_fallback_spec.rb
1336
- - spec/core_ext_spec.rb
1337
- - spec/data_readers/additional_date_format_selector_spec.rb
1338
- - spec/data_readers/date_time_data_reader_spec.rb
1339
- - spec/data_readers/number_data_reader_spec.rb
1340
- - spec/data_readers/timespan_data_reader_spec.rb
1341
- - spec/formatters/calendars/datetime_formatter_spec.rb
1342
- - spec/formatters/list_formatter_spec.rb
1343
- - spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb
1344
- - spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb
1345
- - spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb
1346
- - spec/formatters/numbers/currency_formatter_spec.rb
1347
- - spec/formatters/numbers/decimal_formatter_spec.rb
1348
- - spec/formatters/numbers/helpers/fraction_spec.rb
1349
- - spec/formatters/numbers/helpers/integer_spec.rb
1350
- - spec/formatters/numbers/number_formatter_spec.rb
1351
- - spec/formatters/numbers/percent_formatter_spec.rb
1352
- - spec/formatters/numbers/rbnf/allowed_failures.yml
1353
- - spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml
1354
- - spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml
1355
- - spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml
1356
- - spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml
1357
- - spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml
1358
- - spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml
1359
- - spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml
1360
- - spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml
1361
- - spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml
1362
- - spec/formatters/numbers/rbnf/locales/de-CH/rbnf_test.yml
1363
- - spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml
1364
- - spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml
1365
- - spec/formatters/numbers/rbnf/locales/en-150/rbnf_test.yml
1366
- - spec/formatters/numbers/rbnf/locales/en-AU/rbnf_test.yml
1367
- - spec/formatters/numbers/rbnf/locales/en-CA/rbnf_test.yml
1368
- - spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml
1369
- - spec/formatters/numbers/rbnf/locales/en-IE/rbnf_test.yml
1370
- - spec/formatters/numbers/rbnf/locales/en-SG/rbnf_test.yml
1371
- - spec/formatters/numbers/rbnf/locales/en-ZA/rbnf_test.yml
1372
- - spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml
1373
- - spec/formatters/numbers/rbnf/locales/es-419/rbnf_test.yml
1374
- - spec/formatters/numbers/rbnf/locales/es-CO/rbnf_test.yml
1375
- - spec/formatters/numbers/rbnf/locales/es-MX/rbnf_test.yml
1376
- - spec/formatters/numbers/rbnf/locales/es-US/rbnf_test.yml
1377
- - spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml
1378
- - spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml
1379
- - spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml
1380
- - spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml
1381
- - spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml
1382
- - spec/formatters/numbers/rbnf/locales/fr-BE/rbnf_test.yml
1383
- - spec/formatters/numbers/rbnf/locales/fr-CA/rbnf_test.yml
1384
- - spec/formatters/numbers/rbnf/locales/fr-CH/rbnf_test.yml
1385
- - spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml
1386
- - spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml
1387
- - spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml
1388
- - spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml
1389
- - spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml
1390
- - spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml
1391
- - spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml
1392
- - spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml
1393
- - spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml
1394
- - spec/formatters/numbers/rbnf/locales/it-CH/rbnf_test.yml
1395
- - spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml
1396
- - spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml
1397
- - spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml
1398
- - spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml
1399
- - spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml
1400
- - spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml
1401
- - spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml
1402
- - spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml
1403
- - spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml
1404
- - spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml
1405
- - spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml
1406
- - spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml
1407
- - spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml
1408
- - spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml
1409
- - spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml
1410
- - spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml
1411
- - spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml
1412
- - spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml
1413
- - spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml
1414
- - spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml
1415
- - spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml
1416
- - spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml
1417
- - spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml
1418
- - spec/formatters/numbers/rbnf/rbnf_spec.rb
1419
- - spec/formatters/plurals/plural_formatter_spec.rb
1420
- - spec/formatters/plurals/rules_spec.rb
1421
- - spec/localized/localized_array_spec.rb
1422
- - spec/localized/localized_date_spec.rb
1423
- - spec/localized/localized_datetime_spec.rb
1424
- - spec/localized/localized_hash_spec.rb
1425
- - spec/localized/localized_number_spec.rb
1426
- - spec/localized/localized_object_spec.rb
1427
- - spec/localized/localized_string_spec.rb
1428
- - spec/localized/localized_symbol_spec.rb
1429
- - spec/localized/localized_time_spec.rb
1430
- - spec/localized/localized_timespan_spec.rb
1431
- - spec/normalization_spec.rb
1432
- - spec/parsers/number_parser_spec.rb
1433
- - spec/parsers/parser_spec.rb
1434
- - spec/parsers/segmentation_parser_spec.rb
1435
- - spec/parsers/symbol_table_spec.rb
1436
- - spec/parsers/unicode_regex/character_class_spec.rb
1437
- - spec/parsers/unicode_regex/character_range_spec.rb
1438
- - spec/parsers/unicode_regex/character_set_spec.rb
1439
- - spec/parsers/unicode_regex/literal_spec.rb
1440
- - spec/parsers/unicode_regex/unicode_string_spec.rb
1441
- - spec/parsers/unicode_regex_parser_spec.rb
1442
- - spec/readme_spec.rb
1443
- - spec/resources/loader_spec.rb
1444
- - spec/shared/break_iterator_spec.rb
1445
- - spec/shared/calendar_spec.rb
1446
- - spec/shared/casefolder_spec.rb
1447
- - spec/shared/casefolding.txt
1448
- - spec/shared/casefolding_expected.txt
1449
- - spec/shared/code_point_spec.rb
1450
- - spec/shared/currencies_spec.rb
1451
- - spec/shared/language_codes_spec.rb
1452
- - spec/shared/languages_spec.rb
1453
- - spec/shared/numbering_system_spec.rb
1454
- - spec/shared/numbers_spec.rb
1455
- - spec/shared/phone_codes_spec.rb
1456
- - spec/shared/postal_code_generator_spec.rb
1457
- - spec/shared/postal_codes_spec.rb
1458
- - spec/shared/territories_containment_spec.rb
1459
- - spec/shared/territories_spec.rb
1460
- - spec/shared/territory_spec.rb
1461
- - spec/shared/unicode_regex_spec.rb
1462
- - spec/spec_helper.rb
1463
- - spec/tokenizers/calendars/date_tokenizer_spec.rb
1464
- - spec/tokenizers/calendars/datetime_tokenizer_spec.rb
1465
- - spec/tokenizers/calendars/time_tokenizer_spec.rb
1466
- - spec/tokenizers/calendars/timespan_tokenizer_spec.rb
1467
- - spec/tokenizers/composite_token_spec.rb
1468
- - spec/tokenizers/numbers/number_tokenizer_spec.rb
1469
- - spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb
1470
- - spec/tokenizers/token_spec.rb
1471
- - spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb
1472
- - spec/twitter_cldr_spec.rb
1473
- - spec/utils/code_points_spec.rb
1474
- - spec/utils/interpolation_spec.rb
1475
- - spec/utils/range_set_spec.rb
1476
- - spec/utils/regexp_ast_spec.rb
1477
- - spec/utils/regexp_sampler_spec.rb
1478
- - spec/utils/yaml/t.gif
1479
- - spec/utils/yaml/t.yaml
1480
- - spec/utils/yaml/yaml_spec.rb
1481
- - spec/utils_spec.rb
1476
+ - Gemfile
1477
+ - History.txt
1478
+ - LICENSE
1479
+ - NOTICE
1480
+ - README.md
1481
+ - Rakefile
1482
1482
  - twitter_cldr.gemspec
1483
1483
  homepage: http://twitter.com
1484
1484
  licenses: []
@@ -1499,7 +1499,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1499
1499
  version: '0'
1500
1500
  requirements: []
1501
1501
  rubyforge_project:
1502
- rubygems_version: 2.2.1
1502
+ rubygems_version: 2.0.14
1503
1503
  signing_key:
1504
1504
  specification_version: 4
1505
1505
  summary: Ruby implementation of the ICU (International Components for Unicode) that