module I18nLanguageSelect

Imports ISO 639-1 country codes It parses a HTML file from Unicode.org for given locale and saves the Rails' I18n hash in the plugin locale directory

Constants

VERSION

Public Class Methods

configuration() click to toggle source
# File lib/i18n_language_select.rb, line 12
def configuration
  @configuration ||= Configuration.new
end
configuration=(config) click to toggle source
# File lib/i18n_language_select.rb, line 16
def configuration=(config)
  @configuration = config
end
configure() { |configuration| ... } click to toggle source
# File lib/i18n_language_select.rb, line 20
def configure
  yield(configuration)
end