Sha256: 7d91b22a20457892c5e41f8a6e63f214cc3783d62d4e6c09ef4e0c89d6d10270
Contents?: true
Size: 498 Bytes
Versions: 106
Compression:
Stored size: 498 Bytes
Contents
# encoding: utf-8 # 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 include Base end end end
Version data entries
106 entries across 76 versions & 6 rubygems