Sha256: 3336b6bc599438d778add83d1b816e822b6d4975d65d46aa7008aeb3a2fe4d39
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
# -*- encoding : utf-8 -*- require 'active_support/all' module Phrase autoload :Config, 'phrase/config' CLIENT_VERSION = "0.1" class << self def config Thread.current[:phrase_config] ||= Phrase::Config.new end def config=(value) Thread.current[:phrase_config] = value end %w(enabled backend prefix suffix auth_token client_version js_host js_use_ssl).each do |method| module_eval <<-DELEGATORS, __FILE__, __LINE__ + 1 def #{method} config.#{method} end DELEGATORS module_eval <<-DELEGATORS, __FILE__, __LINE__ + 1 def #{method}=(value) config.#{method} = (value) end DELEGATORS end def enabled? enabled end end autoload :ViewHelpers, 'phrase/view_helpers' require 'phrase/engine' require 'phrase/backend' end module I18n class << self def translate_with_phrase(*args) Phrase.backend.translate(*args) end alias_method_chain :translate, :phrase alias_method :t, :translate end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phrase-0.1.4 | lib/phrase.rb |