12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- require_relative 'boot'
- require 'rails'
- require 'active_model/railtie'
- require 'active_job/railtie'
- require 'active_record/railtie'
- # require "active_storage/engine"
- require 'action_controller/railtie'
- require 'action_mailer/railtie'
- require 'action_view/railtie'
- # require "action_cable/engine"
- require 'sprockets/railtie'
- require 'rails/test_unit/railtie'
- # Require the gems listed in Gemfile, including any gems
- # you've limited to :test, :development, or :production.
- Bundler.require(*Rails.groups)
- module Huginn
- class Application < Rails::Application
- Dotenv.overload File.expand_path('../spec/env.test', __dir__) if Rails.env.test?
- # Initialize configuration defaults for originally generated Rails version.
- config.load_defaults 7.0
- # 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.
- # Custom directories with classes and modules you want to be autoloadable.
- config.autoload_paths += %W[#{config.root}/lib #{config.root}/app/presenters #{config.root}/app/jobs]
- # Activate observers that should always be running.
- # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
- # 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 = ENV['TIMEZONE'].presence || 'Pacific 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
- # Configure the default encoding used in templates for Ruby 1.9.
- config.encoding = 'utf-8'
- # Enable escaping HTML in JSON.
- config.active_support.escape_html_entities_in_json = true
- # Use SQL instead of Active Record's schema dumper when creating the database.
- # This is necessary if your schema can't be completely dumped by the schema dumper,
- # like if you have constraints or database-specific column types
- # config.active_record.schema_format = :sql
- config.active_job.queue_adapter = :delayed_job
- config.action_view.sanitized_allowed_tags = %w[strong em b i p code pre tt samp kbd var sub sup dfn cite big small
- address hr br div span h1 h2 h3 h4 h5 h6 ul ol li dl dt dd abbr acronym a img blockquote del ins style table thead tbody tr th td]
- config.action_view.sanitized_allowed_attributes = %w[href src width height alt cite datetime title class name
- xml:lang abbr border cellspacing cellpadding valign style]
- config.after_initialize do
- config.active_record.yaml_column_permitted_classes = [Symbol, Date, Time]
- end
- ActiveSupport::XmlMini.backend = 'Nokogiri'
- end
- end
|