module I18n::Processes::Configuration
Constants
- CONFIG_FILES
- DEFAULTS
- IGNORE_TYPES
Public Instance Methods
base_locale()
click to toggle source
@return [String] default i18n locale
# File lib/i18n/processes/configuration.rb, line 71 def base_locale @config_sections[:base_locale] ||= (config[:base_locale] || DEFAULTS[:base_locale]).to_s end
config()
click to toggle source
i18n-processes config (defaults + config/i18n-processes.yml) @return [Hash{String => String,Hash,Array}]
# File lib/i18n/processes/configuration.rb, line 13 def config @config || (self.config = {}) end
config=(conf)
click to toggle source
# File lib/i18n/processes/configuration.rb, line 39 def config=(conf) @config = file_config.deep_merge(conf) @config_sections = {} end
config_for_inspect()
click to toggle source
# File lib/i18n/processes/configuration.rb, line 110 def config_for_inspect to_hash_from_indifferent(config_sections.reject { |_k, v| v.blank? }).tap do |sections| sections.each_value do |section| section.merge! section.delete('config') if section.is_a?(Hash) && section.key?('config') end end end
config_sections()
click to toggle source
evaluated configuration (as the app sees it)
# File lib/i18n/processes/configuration.rb, line 96 def config_sections # init all sections base_locale internal_locale locales data_config @config_sections[:search] ||= search_config translation_config IGNORE_TYPES.each do |ignore_type| ignore_config ignore_type end @config_sections end
data_config()
click to toggle source
data config
@return [Hash<adapter: String, options: Hash>]
# File lib/i18n/processes/configuration.rb, line 46 def data_config @config_sections[:data] ||= begin { adapter: data.class.name, config: data.config } end end
file_config()
click to toggle source
# File lib/i18n/processes/configuration.rb, line 22 def file_config file = CONFIG_FILES.detect { |f| File.exist?(f) } # rubocop:disable Security/Eval config = file && YAML.load(eval(Erubi::Engine.new(File.read(file, encoding: 'UTF-8')).src)) # rubocop:enable Security/Eval if config.present? config.with_indifferent_access.tap do |c| if c[:relative_roots] warn_deprecated 'Please move relative_roots under search in config/i18n-processes.yml.' c[:search][:relative_roots] = c.delete(:relative_roots) end end else {}.with_indifferent_access end end
ignore_config(type = nil)
click to toggle source
# File lib/i18n/processes/configuration.rb, line 89 def ignore_config(type = nil) key = type ? "ignore_#{type}" : 'ignore' @config_sections[key] ||= config[key] end
internal_locale()
click to toggle source
# File lib/i18n/processes/configuration.rb, line 75 def internal_locale @config_sections[:internal_locale] ||= begin internal_locale = (config[:internal_locale] || DEFAULTS[:internal_locale]).to_s valid_locales = Dir[File.join(I18n::Processes.gem_path, 'config', 'locales', '*.yml')] .map { |f| File.basename(f, '.yml') } unless valid_locales.first.include?(internal_locale) log_warn "invalid internal_locale #{internal_locale.inspect}. "\ "Available internal locales: #{valid_locales * ', '}." internal_locale = DEFAULTS[:internal_locale].to_s end internal_locale end end
locales()
click to toggle source
@return [Array<String>] all available locales, base_locale
is always first
# File lib/i18n/processes/configuration.rb, line 66 def locales @config_sections[:locales] ||= data.locales end
translation_config()
click to toggle source
translation config @return [Hash{String => String,Hash,Array}]
# File lib/i18n/processes/configuration.rb, line 57 def translation_config @config_sections[:translation] ||= begin conf = (config[:translation] || {}).with_indifferent_access conf[:api_key] ||= ENV['GOOGLE_TRANSLATE_API_KEY'] if ENV.key?('GOOGLE_TRANSLATE_API_KEY') conf end end
Private Instance Methods
to_hash_from_indifferent(value)
click to toggle source
# File lib/i18n/processes/configuration.rb, line 120 def to_hash_from_indifferent(value) case value when Hash value.stringify_keys.to_hash.tap do |h| h.each { |k, v| h[k] = to_hash_from_indifferent(v) if v.is_a?(Hash) || v.is_a?(Array) } end when Array value.map { |e| to_hash_from_indifferent e } else value end end