Sha256: 9204c0226b812b5bdd1c096d8964f8dd9d7f84f91b6e69ffaa57bb7e22b5fbee
Contents?: true
Size: 514 Bytes
Versions: 8
Compression:
Stored size: 514 Bytes
Contents
# encoding: utf-8 require 'i18n/backend/base' # Stub class for the Simple backend. The actual implementation is provided by # the backend Base class. This makes it easier to extend the Simple backend's # behaviour by including modules. E.g.: # # module I18n::Backend::Pluralization # def pluralize(*args) # # extended pluralization logic # super # end # end # # I18n::Backend::Simple.send(:include, I18n::Backend::Pluralization) module I18n module Backend class Simple < Base end end end
Version data entries
8 entries across 8 versions & 4 rubygems