Sha256: 436b4c9e4f76eb3055a043329c125be89bdfe35fcb687393459d33176a0b7eee
Contents?: true
Size: 1.37 KB
Versions: 6
Compression:
Stored size: 1.37 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') # 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] I18n.available_locales = %i[en es] config.i18n.default_locale = :es # config.active_record.raise_in_transactional_callbacks = true # config exeption routes config.exceptions_app = routes end end
Version data entries
6 entries across 6 versions & 1 rubygems