gauge/config/application.rb

20 lines
753 B
Ruby
Raw Normal View History

2016-10-01 02:08:20 +03:00
require_relative 'boot'
2015-10-06 15:21:46 +03:00
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module Gauge
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
2015-10-06 17:26:24 +03:00
config.i18n.available_locales = [:bg, :en]
config.i18n.default_locale = :bg
2015-10-06 15:21:46 +03:00
end
end