├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── Appraisals ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── benchmarks └── overhead.rb ├── gemfiles ├── rails_7.2.gemfile └── rails_8.0.gemfile ├── lib ├── traco.rb └── traco │ ├── attributes.rb │ ├── class_methods.rb │ ├── locale_fallbacks.rb │ ├── translates.rb │ └── version.rb ├── spec ├── app │ ├── post.rb │ └── sv.yml ├── locale_fallbacks_spec.rb ├── spec_helper.rb ├── spec_helper_models.rb └── traco_spec.rb └── traco.gemspec /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | -r spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/Rakefile -------------------------------------------------------------------------------- /benchmarks/overhead.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/benchmarks/overhead.rb -------------------------------------------------------------------------------- /gemfiles/rails_7.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/gemfiles/rails_7.2.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_8.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/gemfiles/rails_8.0.gemfile -------------------------------------------------------------------------------- /lib/traco.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/lib/traco.rb -------------------------------------------------------------------------------- /lib/traco/attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/lib/traco/attributes.rb -------------------------------------------------------------------------------- /lib/traco/class_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/lib/traco/class_methods.rb -------------------------------------------------------------------------------- /lib/traco/locale_fallbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/lib/traco/locale_fallbacks.rb -------------------------------------------------------------------------------- /lib/traco/translates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/lib/traco/translates.rb -------------------------------------------------------------------------------- /lib/traco/version.rb: -------------------------------------------------------------------------------- 1 | module Traco 2 | VERSION = "6.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/app/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/spec/app/post.rb -------------------------------------------------------------------------------- /spec/app/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/spec/app/sv.yml -------------------------------------------------------------------------------- /spec/locale_fallbacks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/spec/locale_fallbacks_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/spec/spec_helper_models.rb -------------------------------------------------------------------------------- /spec/traco_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/spec/traco_spec.rb -------------------------------------------------------------------------------- /traco.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/traco/HEAD/traco.gemspec --------------------------------------------------------------------------------