Sha256: 56fa275e5a3b346dccafee42565d8edcea2751ea084170b634b8fbe2b4df9362
Contents?: true
Size: 986 Bytes
Versions: 6
Compression:
Stored size: 986 Bytes
Contents
require File.expand_path('boot', __dir__) require "active_record/railtie" require "active_job/railtie" require "active_model/railtie" require "action_controller/railtie" Bundler.require(*Rails.groups) require "journaled" module Dummy 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. # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. # config.time_zone = 'Central Time (US & Canada)' # 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] # config.i18n.default_locale = :de end end
Version data entries
6 entries across 6 versions & 1 rubygems