123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- require_relative 'boot'
- require 'rails/all'
- Bundler.require(*Rails.groups)
- module Huginn
- class Application < Rails::Application
- Dotenv.overload File.expand_path('../../spec/env.test', __FILE__) if Rails.env.test?
-
-
-
-
- config.autoload_paths += %W(#{config.root}/lib #{config.root}/app/presenters #{config.root}/app/jobs)
-
-
-
-
- config.time_zone = ENV['TIMEZONE'].presence || "Pacific Time (US & Canada)"
-
-
-
-
- config.encoding = "utf-8"
-
- config.active_support.escape_html_entities_in_json = true
-
-
-
-
- config.active_job.queue_adapter = :delayed_job
- end
- end
|