gauge/config/application.rb

33 lines
1.2 KiB
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
2018-09-25 13:05:50 +03:00
# Initialize configuration defaults for originally generated Rails version.
2024-09-13 19:13:40 +03:00
config.load_defaults 7.2
2018-09-25 13:05:50 +03:00
2015-10-06 15:21:46 +03:00
# 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]
2024-09-13 19:13:40 +03:00
config.i18n.available_locales = %i[bg en]
2015-10-06 17:26:24 +03:00
config.i18n.default_locale = :bg
2018-09-25 13:18:08 +03:00
2024-09-13 19:13:40 +03:00
# Please, add to the `ignore` list any other `lib` subdirectories that do
# not contain `.rb` files, or that should not be reloaded or eager loaded.
# Common ones are `templates`, `generators`, or `middleware`, for example.
config.autoload_lib(ignore: %w[assets tasks])
# Configuration for the application, engines, and railties goes here.
#
# These settings can be overridden in specific environments using the files
# in config/environments, which are processed later.
#
# config.time_zone = "Central Time (US & Canada)"
# config.eager_load_paths << Rails.root.join("extras")
2015-10-06 15:21:46 +03:00
end
end