├── .autotest ├── .git-blame-ignore-revs ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .rubocop.yml ├── .rubocop_todo.yml ├── .vscode └── extensions.json ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── VERSION ├── cldr.thor ├── docs ├── _config.yml └── index.md ├── lib ├── cldr.rb ├── cldr │ ├── download.rb │ ├── draft_status.rb │ ├── export.rb │ ├── export │ │ ├── code.rb │ │ ├── code │ │ │ └── numbers.rb │ │ ├── data.rb │ │ ├── data │ │ │ ├── aliases.rb │ │ │ ├── base.rb │ │ │ ├── calendars.rb │ │ │ ├── calendars │ │ │ │ └── gregorian.rb │ │ │ ├── characters.rb │ │ │ ├── context_transforms.rb │ │ │ ├── country_codes.rb │ │ │ ├── currencies.rb │ │ │ ├── currency_digits_and_rounding.rb │ │ │ ├── delimiters.rb │ │ │ ├── fields.rb │ │ │ ├── languages.rb │ │ │ ├── layout.rb │ │ │ ├── likely_subtags.rb │ │ │ ├── lists.rb │ │ │ ├── locale_display_pattern.rb │ │ │ ├── metazones.rb │ │ │ ├── numbering_systems.rb │ │ │ ├── numbers.rb │ │ │ ├── parent_locales.rb │ │ │ ├── plural_rules.rb │ │ │ ├── plurals.rb │ │ │ ├── plurals │ │ │ │ ├── cldr_grammar.treetop │ │ │ │ ├── grammar.rb │ │ │ │ └── rules.rb │ │ │ ├── rbnf.rb │ │ │ ├── rbnf_root.rb │ │ │ ├── region_currencies.rb │ │ │ ├── region_validity.rb │ │ │ ├── segments_root.rb │ │ │ ├── subdivisions.rb │ │ │ ├── territories.rb │ │ │ ├── territories_containment.rb │ │ │ ├── timezones.rb │ │ │ ├── transforms.rb │ │ │ ├── units.rb │ │ │ ├── variables.rb │ │ │ ├── week_data.rb │ │ │ └── windows_zones.rb │ │ ├── data_file.rb │ │ ├── data_set.rb │ │ ├── deep_validate_keys.rb │ │ ├── element.rb │ │ ├── file_based_data_set.rb │ │ ├── nil_data_set.rb │ │ ├── ruby.rb │ │ └── yaml.rb │ ├── format.rb │ ├── format │ │ ├── currency.rb │ │ ├── date.rb │ │ ├── datetime.rb │ │ ├── datetime │ │ │ └── base.rb │ │ ├── decimal.rb │ │ ├── decimal │ │ │ ├── base.rb │ │ │ ├── fraction.rb │ │ │ ├── integer.rb │ │ │ └── number.rb │ │ ├── percent.rb │ │ └── time.rb │ ├── ldml.rb │ ├── ldml │ │ ├── attribute.rb │ │ └── attributes.rb │ ├── locale.rb │ ├── locale │ │ └── fallbacks.rb │ ├── thor.rb │ ├── unused_alias_element_chains.txt │ ├── validate.rb │ └── validate_upstream_assumptions.rb └── core_ext │ ├── hash │ ├── deep_merge.rb │ ├── deep_prune.rb │ ├── deep_sort.rb │ ├── deep_stringify.rb │ └── symbolize_keys.rb │ └── string │ ├── camelize.rb │ └── underscore.rb ├── ruby-cldr.gemspec └── test ├── all.rb ├── core_ext ├── deep_prune_test.rb └── deep_stringify_test.rb ├── draft_status_test.rb ├── export ├── code │ └── numbers_test.rb ├── data │ ├── all.rb │ ├── base_test.rb │ ├── calendars_test.rb │ ├── country_codes_test.rb │ ├── currencies_test.rb │ ├── delimiters_test.rb │ ├── fields_test.rb │ ├── languages_test.rb │ ├── lists_test.rb │ ├── locale_display_pattern_test.rb │ ├── metazones_test.rb │ ├── numbers_test.rb │ ├── parent_locales_test.rb │ ├── plurals_test.rb │ ├── region_validity_test.rb │ ├── subdivisions_test.rb │ ├── territories_containment_test.rb │ ├── territories_test.rb │ ├── timezones_test.rb │ ├── units_test.rb │ ├── week_data_test.rb │ └── windows_zones_test.rb ├── data_file_test.rb ├── data_set_test.rb ├── deep_validate_keys_test.rb ├── element_test.rb └── file_based_data_set_test.rb ├── export_test.rb ├── format ├── all.rb ├── currency_test.rb ├── date_test.rb ├── datetime_test.rb ├── decimal │ ├── fraction_test.rb │ ├── integer_test.rb │ └── number_test.rb ├── decimal_test.rb ├── percent_test.rb └── time_test.rb ├── locale └── fallbacks_test.rb ├── test_autotest.rb └── test_helper.rb /.autotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/.autotest -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | -------------------------------------------------------------------------------- /cldr.thor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/cldr.thor -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/docs/index.md -------------------------------------------------------------------------------- /lib/cldr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr.rb -------------------------------------------------------------------------------- /lib/cldr/download.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/download.rb -------------------------------------------------------------------------------- /lib/cldr/draft_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/draft_status.rb -------------------------------------------------------------------------------- /lib/cldr/export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export.rb -------------------------------------------------------------------------------- /lib/cldr/export/code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/code.rb -------------------------------------------------------------------------------- /lib/cldr/export/code/numbers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/code/numbers.rb -------------------------------------------------------------------------------- /lib/cldr/export/data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/aliases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/aliases.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/base.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/calendars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/calendars.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/calendars/gregorian.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/calendars/gregorian.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/characters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/characters.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/context_transforms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/context_transforms.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/country_codes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/country_codes.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/currencies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/currencies.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/currency_digits_and_rounding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/currency_digits_and_rounding.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/delimiters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/delimiters.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/fields.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/languages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/languages.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/layout.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/likely_subtags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/likely_subtags.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/lists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/lists.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/locale_display_pattern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/locale_display_pattern.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/metazones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/metazones.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/numbering_systems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/numbering_systems.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/numbers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/numbers.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/parent_locales.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/parent_locales.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/plural_rules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/plural_rules.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/plurals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/plurals.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/plurals/cldr_grammar.treetop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/plurals/cldr_grammar.treetop -------------------------------------------------------------------------------- /lib/cldr/export/data/plurals/grammar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/plurals/grammar.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/plurals/rules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/plurals/rules.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/rbnf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/rbnf.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/rbnf_root.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/rbnf_root.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/region_currencies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/region_currencies.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/region_validity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/region_validity.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/segments_root.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/segments_root.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/subdivisions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/subdivisions.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/territories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/territories.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/territories_containment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/territories_containment.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/timezones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/timezones.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/transforms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/transforms.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/units.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/units.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/variables.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/week_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/week_data.rb -------------------------------------------------------------------------------- /lib/cldr/export/data/windows_zones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data/windows_zones.rb -------------------------------------------------------------------------------- /lib/cldr/export/data_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data_file.rb -------------------------------------------------------------------------------- /lib/cldr/export/data_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/data_set.rb -------------------------------------------------------------------------------- /lib/cldr/export/deep_validate_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/deep_validate_keys.rb -------------------------------------------------------------------------------- /lib/cldr/export/element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/element.rb -------------------------------------------------------------------------------- /lib/cldr/export/file_based_data_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/file_based_data_set.rb -------------------------------------------------------------------------------- /lib/cldr/export/nil_data_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/nil_data_set.rb -------------------------------------------------------------------------------- /lib/cldr/export/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/ruby.rb -------------------------------------------------------------------------------- /lib/cldr/export/yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/export/yaml.rb -------------------------------------------------------------------------------- /lib/cldr/format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/format.rb -------------------------------------------------------------------------------- /lib/cldr/format/currency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/format/currency.rb -------------------------------------------------------------------------------- /lib/cldr/format/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/format/date.rb -------------------------------------------------------------------------------- /lib/cldr/format/datetime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/format/datetime.rb -------------------------------------------------------------------------------- /lib/cldr/format/datetime/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/format/datetime/base.rb -------------------------------------------------------------------------------- /lib/cldr/format/decimal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/format/decimal.rb -------------------------------------------------------------------------------- /lib/cldr/format/decimal/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/format/decimal/base.rb -------------------------------------------------------------------------------- /lib/cldr/format/decimal/fraction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/format/decimal/fraction.rb -------------------------------------------------------------------------------- /lib/cldr/format/decimal/integer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/format/decimal/integer.rb -------------------------------------------------------------------------------- /lib/cldr/format/decimal/number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/format/decimal/number.rb -------------------------------------------------------------------------------- /lib/cldr/format/percent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/format/percent.rb -------------------------------------------------------------------------------- /lib/cldr/format/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/format/time.rb -------------------------------------------------------------------------------- /lib/cldr/ldml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/ldml.rb -------------------------------------------------------------------------------- /lib/cldr/ldml/attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/ldml/attribute.rb -------------------------------------------------------------------------------- /lib/cldr/ldml/attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/ldml/attributes.rb -------------------------------------------------------------------------------- /lib/cldr/locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/locale.rb -------------------------------------------------------------------------------- /lib/cldr/locale/fallbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/locale/fallbacks.rb -------------------------------------------------------------------------------- /lib/cldr/thor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/thor.rb -------------------------------------------------------------------------------- /lib/cldr/unused_alias_element_chains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/unused_alias_element_chains.txt -------------------------------------------------------------------------------- /lib/cldr/validate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/validate.rb -------------------------------------------------------------------------------- /lib/cldr/validate_upstream_assumptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/cldr/validate_upstream_assumptions.rb -------------------------------------------------------------------------------- /lib/core_ext/hash/deep_merge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/core_ext/hash/deep_merge.rb -------------------------------------------------------------------------------- /lib/core_ext/hash/deep_prune.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/core_ext/hash/deep_prune.rb -------------------------------------------------------------------------------- /lib/core_ext/hash/deep_sort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/core_ext/hash/deep_sort.rb -------------------------------------------------------------------------------- /lib/core_ext/hash/deep_stringify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/core_ext/hash/deep_stringify.rb -------------------------------------------------------------------------------- /lib/core_ext/hash/symbolize_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/core_ext/hash/symbolize_keys.rb -------------------------------------------------------------------------------- /lib/core_ext/string/camelize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/core_ext/string/camelize.rb -------------------------------------------------------------------------------- /lib/core_ext/string/underscore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/lib/core_ext/string/underscore.rb -------------------------------------------------------------------------------- /ruby-cldr.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/ruby-cldr.gemspec -------------------------------------------------------------------------------- /test/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/all.rb -------------------------------------------------------------------------------- /test/core_ext/deep_prune_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/core_ext/deep_prune_test.rb -------------------------------------------------------------------------------- /test/core_ext/deep_stringify_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/core_ext/deep_stringify_test.rb -------------------------------------------------------------------------------- /test/draft_status_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/draft_status_test.rb -------------------------------------------------------------------------------- /test/export/code/numbers_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/code/numbers_test.rb -------------------------------------------------------------------------------- /test/export/data/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/all.rb -------------------------------------------------------------------------------- /test/export/data/base_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/base_test.rb -------------------------------------------------------------------------------- /test/export/data/calendars_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/calendars_test.rb -------------------------------------------------------------------------------- /test/export/data/country_codes_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/country_codes_test.rb -------------------------------------------------------------------------------- /test/export/data/currencies_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/currencies_test.rb -------------------------------------------------------------------------------- /test/export/data/delimiters_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/delimiters_test.rb -------------------------------------------------------------------------------- /test/export/data/fields_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/fields_test.rb -------------------------------------------------------------------------------- /test/export/data/languages_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/languages_test.rb -------------------------------------------------------------------------------- /test/export/data/lists_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/lists_test.rb -------------------------------------------------------------------------------- /test/export/data/locale_display_pattern_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/locale_display_pattern_test.rb -------------------------------------------------------------------------------- /test/export/data/metazones_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/metazones_test.rb -------------------------------------------------------------------------------- /test/export/data/numbers_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/numbers_test.rb -------------------------------------------------------------------------------- /test/export/data/parent_locales_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/parent_locales_test.rb -------------------------------------------------------------------------------- /test/export/data/plurals_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/plurals_test.rb -------------------------------------------------------------------------------- /test/export/data/region_validity_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/region_validity_test.rb -------------------------------------------------------------------------------- /test/export/data/subdivisions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/subdivisions_test.rb -------------------------------------------------------------------------------- /test/export/data/territories_containment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/territories_containment_test.rb -------------------------------------------------------------------------------- /test/export/data/territories_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/territories_test.rb -------------------------------------------------------------------------------- /test/export/data/timezones_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/timezones_test.rb -------------------------------------------------------------------------------- /test/export/data/units_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/units_test.rb -------------------------------------------------------------------------------- /test/export/data/week_data_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/week_data_test.rb -------------------------------------------------------------------------------- /test/export/data/windows_zones_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data/windows_zones_test.rb -------------------------------------------------------------------------------- /test/export/data_file_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data_file_test.rb -------------------------------------------------------------------------------- /test/export/data_set_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/data_set_test.rb -------------------------------------------------------------------------------- /test/export/deep_validate_keys_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/deep_validate_keys_test.rb -------------------------------------------------------------------------------- /test/export/element_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/element_test.rb -------------------------------------------------------------------------------- /test/export/file_based_data_set_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export/file_based_data_set_test.rb -------------------------------------------------------------------------------- /test/export_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/export_test.rb -------------------------------------------------------------------------------- /test/format/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/format/all.rb -------------------------------------------------------------------------------- /test/format/currency_test.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/format/date_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/format/date_test.rb -------------------------------------------------------------------------------- /test/format/datetime_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/format/datetime_test.rb -------------------------------------------------------------------------------- /test/format/decimal/fraction_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/format/decimal/fraction_test.rb -------------------------------------------------------------------------------- /test/format/decimal/integer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/format/decimal/integer_test.rb -------------------------------------------------------------------------------- /test/format/decimal/number_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/format/decimal/number_test.rb -------------------------------------------------------------------------------- /test/format/decimal_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/format/decimal_test.rb -------------------------------------------------------------------------------- /test/format/percent_test.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/format/time_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/format/time_test.rb -------------------------------------------------------------------------------- /test/locale/fallbacks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/locale/fallbacks_test.rb -------------------------------------------------------------------------------- /test/test_autotest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/test_autotest.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-i18n/ruby-cldr/HEAD/test/test_helper.rb --------------------------------------------------------------------------------