Sha256: e100dc26a0a30516f1658e1d164c6a6c706d8a602f5eb7040bef718a0784bb97
Contents?: true
Size: 1.26 KB
Versions: 1
Compression:
Stored size: 1.26 KB
Contents
require "lit/engine" require 'lit/loader' module Lit mattr_accessor :authentication_function mattr_accessor :key_value_engine mattr_accessor :storage_options mattr_accessor :humanize_key mattr_accessor :fallback mattr_accessor :api_enabled mattr_accessor :api_key mattr_accessor :all_translations_are_html_safe mattr_accessor :set_last_updated_at_upon_creation class << self attr_accessor :loader end def self.init @@table_exists ||= self.check_if_table_exists if self.loader.nil? && @@table_exists self.loader ||= Loader.new Lit.humanize_key = false if Lit.humanize_key.nil? # if loading all translations on start, migrations have to be already # performed, fails on first deploy # self.loader.cache.load_all_translations Lit.storage_options ||= {} end self.loader end def self.check_if_table_exists begin Lit::Locale.table_exists? rescue false end end def self.get_key_value_engine case Lit.key_value_engine when 'redis' require 'lit/adapters/redis_storage' return RedisStorage.new else require 'lit/adapters/hash_storage' return HashStorage.new end end end if defined? Rails require 'lit/rails' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lit-0.2.4 | lib/lit.rb |