├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── i18n-debug.gemspec ├── lib └── i18n │ ├── debug.rb │ └── debug │ └── version.rb └── test └── test_i18n_debug.rb /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | *.gem 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fphilipe/i18n-debug/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fphilipe/i18n-debug/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fphilipe/i18n-debug/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fphilipe/i18n-debug/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fphilipe/i18n-debug/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fphilipe/i18n-debug/HEAD/Rakefile -------------------------------------------------------------------------------- /i18n-debug.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fphilipe/i18n-debug/HEAD/i18n-debug.gemspec -------------------------------------------------------------------------------- /lib/i18n/debug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fphilipe/i18n-debug/HEAD/lib/i18n/debug.rb -------------------------------------------------------------------------------- /lib/i18n/debug/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fphilipe/i18n-debug/HEAD/lib/i18n/debug/version.rb -------------------------------------------------------------------------------- /test/test_i18n_debug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fphilipe/i18n-debug/HEAD/test/test_i18n_debug.rb --------------------------------------------------------------------------------