hello-gem/hello

View on GitHub
lib/hello/locales.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Hello
  module Locales
    def self.all
      @all ||= YAML.load(File.read(Hello.root.join('lib/data/locales.yml')))
    end
  end
end