├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ └── ruby-tests.yml ├── .gitignore ├── .rubocop.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.md ├── MIGRATING_FROM_V3_TO_V4.md ├── README.md ├── Rakefile ├── bin └── release ├── exe └── i18n ├── i18n-js.gemspec ├── images └── i18njs.png ├── lib ├── guard │ ├── i18n-js.rb │ └── i18n-js │ │ ├── templates │ │ └── Guardfile │ │ └── version.rb ├── i18n-js.rb └── i18n-js │ ├── clean_hash.rb │ ├── cli.rb │ ├── cli │ ├── check_command.rb │ ├── command.rb │ ├── export_command.rb │ ├── init_command.rb │ ├── lint_scripts_command.rb │ ├── lint_translations_command.rb │ ├── plugins_command.rb │ ├── ui.rb │ └── version_command.rb │ ├── embed_fallback_translations_plugin.rb │ ├── export_files_plugin.rb │ ├── lint.ts │ ├── listen.rb │ ├── plugin.rb │ ├── schema.rb │ ├── sort_hash.rb │ └── version.rb ├── package.json └── test ├── config ├── check.yml ├── config.yml.erb ├── digest.yml ├── embed_fallback_translations.yml ├── everything.json ├── everything.yml ├── export_files.yml ├── group.yml ├── lint_scripts.yml ├── lint_translations.yml ├── locale_placeholder.yml ├── locale_placeholder_dir.yml ├── multiple_files.yml ├── require.rb ├── require_error.rb └── specific.yml ├── fixtures ├── embed │ └── translations.yml ├── expected │ ├── clean_hash.json │ ├── embed_fallback_translations.json │ ├── everything.json │ ├── export_files.ts │ ├── group.json │ ├── lint.txt │ ├── multiple_files │ │ ├── en.json │ │ ├── es.json │ │ └── pt.json │ ├── specific.json │ └── transformed.json ├── export_files.erb ├── po │ ├── en.po │ ├── es.po │ └── pt.po └── yml │ ├── en.yml │ ├── es.yml │ └── pt.yml ├── i18n-js ├── clean_hash_test.rb ├── cli │ ├── check_command_test.rb │ ├── export_command_test.rb │ ├── init_command_test.rb │ ├── lint_scripts_command_test.rb │ ├── lint_translations_command_test.rb │ ├── plugins_command_test.rb │ ├── root_command_test.rb │ ├── ui_test.rb │ └── version_command_test.rb ├── embed_fallback_translations_plugin_test.rb ├── export_files_plugin_test.rb ├── exporter_test.rb ├── plugin_test.rb ├── schema_test.rb └── sort_hash_test.rb ├── scripts └── lint │ └── file.js ├── support ├── backends.rb ├── helpers.rb └── minitest.rb └── test_helper.rb /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ruby-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/.github/workflows/ruby-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MIGRATING_FROM_V3_TO_V4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/MIGRATING_FROM_V3_TO_V4.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/bin/release -------------------------------------------------------------------------------- /exe/i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/exe/i18n -------------------------------------------------------------------------------- /i18n-js.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/i18n-js.gemspec -------------------------------------------------------------------------------- /images/i18njs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/images/i18njs.png -------------------------------------------------------------------------------- /lib/guard/i18n-js.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/guard/i18n-js.rb -------------------------------------------------------------------------------- /lib/guard/i18n-js/templates/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/guard/i18n-js/templates/Guardfile -------------------------------------------------------------------------------- /lib/guard/i18n-js/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/guard/i18n-js/version.rb -------------------------------------------------------------------------------- /lib/i18n-js.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js.rb -------------------------------------------------------------------------------- /lib/i18n-js/clean_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/clean_hash.rb -------------------------------------------------------------------------------- /lib/i18n-js/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/cli.rb -------------------------------------------------------------------------------- /lib/i18n-js/cli/check_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/cli/check_command.rb -------------------------------------------------------------------------------- /lib/i18n-js/cli/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/cli/command.rb -------------------------------------------------------------------------------- /lib/i18n-js/cli/export_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/cli/export_command.rb -------------------------------------------------------------------------------- /lib/i18n-js/cli/init_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/cli/init_command.rb -------------------------------------------------------------------------------- /lib/i18n-js/cli/lint_scripts_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/cli/lint_scripts_command.rb -------------------------------------------------------------------------------- /lib/i18n-js/cli/lint_translations_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/cli/lint_translations_command.rb -------------------------------------------------------------------------------- /lib/i18n-js/cli/plugins_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/cli/plugins_command.rb -------------------------------------------------------------------------------- /lib/i18n-js/cli/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/cli/ui.rb -------------------------------------------------------------------------------- /lib/i18n-js/cli/version_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/cli/version_command.rb -------------------------------------------------------------------------------- /lib/i18n-js/embed_fallback_translations_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/embed_fallback_translations_plugin.rb -------------------------------------------------------------------------------- /lib/i18n-js/export_files_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/export_files_plugin.rb -------------------------------------------------------------------------------- /lib/i18n-js/lint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/lint.ts -------------------------------------------------------------------------------- /lib/i18n-js/listen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/listen.rb -------------------------------------------------------------------------------- /lib/i18n-js/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/plugin.rb -------------------------------------------------------------------------------- /lib/i18n-js/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/schema.rb -------------------------------------------------------------------------------- /lib/i18n-js/sort_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/lib/i18n-js/sort_hash.rb -------------------------------------------------------------------------------- /lib/i18n-js/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module I18nJS 4 | VERSION = "4.2.4" 5 | end 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/package.json -------------------------------------------------------------------------------- /test/config/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/check.yml -------------------------------------------------------------------------------- /test/config/config.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/config.yml.erb -------------------------------------------------------------------------------- /test/config/digest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/digest.yml -------------------------------------------------------------------------------- /test/config/embed_fallback_translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/embed_fallback_translations.yml -------------------------------------------------------------------------------- /test/config/everything.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/everything.json -------------------------------------------------------------------------------- /test/config/everything.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/everything.yml -------------------------------------------------------------------------------- /test/config/export_files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/export_files.yml -------------------------------------------------------------------------------- /test/config/group.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/group.yml -------------------------------------------------------------------------------- /test/config/lint_scripts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/lint_scripts.yml -------------------------------------------------------------------------------- /test/config/lint_translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/lint_translations.yml -------------------------------------------------------------------------------- /test/config/locale_placeholder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/locale_placeholder.yml -------------------------------------------------------------------------------- /test/config/locale_placeholder_dir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/locale_placeholder_dir.yml -------------------------------------------------------------------------------- /test/config/multiple_files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/multiple_files.yml -------------------------------------------------------------------------------- /test/config/require.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/require.rb -------------------------------------------------------------------------------- /test/config/require_error.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | raise "💣" 4 | -------------------------------------------------------------------------------- /test/config/specific.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/config/specific.yml -------------------------------------------------------------------------------- /test/fixtures/embed/translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/embed/translations.yml -------------------------------------------------------------------------------- /test/fixtures/expected/clean_hash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/expected/clean_hash.json -------------------------------------------------------------------------------- /test/fixtures/expected/embed_fallback_translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/expected/embed_fallback_translations.json -------------------------------------------------------------------------------- /test/fixtures/expected/everything.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/expected/everything.json -------------------------------------------------------------------------------- /test/fixtures/expected/export_files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/expected/export_files.ts -------------------------------------------------------------------------------- /test/fixtures/expected/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/expected/group.json -------------------------------------------------------------------------------- /test/fixtures/expected/lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/expected/lint.txt -------------------------------------------------------------------------------- /test/fixtures/expected/multiple_files/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/expected/multiple_files/en.json -------------------------------------------------------------------------------- /test/fixtures/expected/multiple_files/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/expected/multiple_files/es.json -------------------------------------------------------------------------------- /test/fixtures/expected/multiple_files/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/expected/multiple_files/pt.json -------------------------------------------------------------------------------- /test/fixtures/expected/specific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/expected/specific.json -------------------------------------------------------------------------------- /test/fixtures/expected/transformed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/expected/transformed.json -------------------------------------------------------------------------------- /test/fixtures/export_files.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/export_files.erb -------------------------------------------------------------------------------- /test/fixtures/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/po/en.po -------------------------------------------------------------------------------- /test/fixtures/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/po/es.po -------------------------------------------------------------------------------- /test/fixtures/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/po/pt.po -------------------------------------------------------------------------------- /test/fixtures/yml/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/yml/en.yml -------------------------------------------------------------------------------- /test/fixtures/yml/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/yml/es.yml -------------------------------------------------------------------------------- /test/fixtures/yml/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/fixtures/yml/pt.yml -------------------------------------------------------------------------------- /test/i18n-js/clean_hash_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/clean_hash_test.rb -------------------------------------------------------------------------------- /test/i18n-js/cli/check_command_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/cli/check_command_test.rb -------------------------------------------------------------------------------- /test/i18n-js/cli/export_command_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/cli/export_command_test.rb -------------------------------------------------------------------------------- /test/i18n-js/cli/init_command_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/cli/init_command_test.rb -------------------------------------------------------------------------------- /test/i18n-js/cli/lint_scripts_command_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/cli/lint_scripts_command_test.rb -------------------------------------------------------------------------------- /test/i18n-js/cli/lint_translations_command_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/cli/lint_translations_command_test.rb -------------------------------------------------------------------------------- /test/i18n-js/cli/plugins_command_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/cli/plugins_command_test.rb -------------------------------------------------------------------------------- /test/i18n-js/cli/root_command_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/cli/root_command_test.rb -------------------------------------------------------------------------------- /test/i18n-js/cli/ui_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/cli/ui_test.rb -------------------------------------------------------------------------------- /test/i18n-js/cli/version_command_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/cli/version_command_test.rb -------------------------------------------------------------------------------- /test/i18n-js/embed_fallback_translations_plugin_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/embed_fallback_translations_plugin_test.rb -------------------------------------------------------------------------------- /test/i18n-js/export_files_plugin_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/export_files_plugin_test.rb -------------------------------------------------------------------------------- /test/i18n-js/exporter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/exporter_test.rb -------------------------------------------------------------------------------- /test/i18n-js/plugin_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/plugin_test.rb -------------------------------------------------------------------------------- /test/i18n-js/schema_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/schema_test.rb -------------------------------------------------------------------------------- /test/i18n-js/sort_hash_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/i18n-js/sort_hash_test.rb -------------------------------------------------------------------------------- /test/scripts/lint/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/scripts/lint/file.js -------------------------------------------------------------------------------- /test/support/backends.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/support/backends.rb -------------------------------------------------------------------------------- /test/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/support/helpers.rb -------------------------------------------------------------------------------- /test/support/minitest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/support/minitest.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnando/i18n-js/HEAD/test/test_helper.rb --------------------------------------------------------------------------------