Sha256: f933d038a45e029ccde24eef0bc7dcc1b5d909e59358e984454443b2b179745b
Contents?: true
Size: 1.46 KB
Versions: 4
Compression:
Stored size: 1.46 KB
Contents
require_relative 'boot' 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 InyxmaterRails # Application 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. # Initialize configuration defaults for originally generated Rails version. config.load_defaults 5.2 # Enable the asset pipeline config.assets.paths << Rails.root.join('app', 'assets', 'fonts') config.assets.precompile += ["codemirror*", "codemirror/**/*"] # 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 = 'Caracas' # The default locale is :en and all translations from config/locales/*.rb, # yml are auto loaded. config.i18n.load_path += Dir[Rails.root.join( 'rockets', 'locales', '*.{rb,yml}' ).to_s] # config.i18n.default_locale = KepplerLanguages::Language.where(active: true).first.name.to_sym # config.active_record.raise_in_transactional_callbacks = true # config exeption routes config.exceptions_app = routes end end
Version data entries
4 entries across 4 versions & 1 rubygems