52194116b3
- upgraded to rails 6 - fixes various issues
36 lines
1.3 KiB
Ruby
36 lines
1.3 KiB
Ruby
require_relative 'boot'
|
|
|
|
require "rails"
|
|
# Pick the frameworks you want:
|
|
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_mailbox/engine"
|
|
require "action_text/engine"
|
|
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 Chatwoot
|
|
class Application < Rails::Application
|
|
# Initialize configuration defaults for originally generated Rails version.
|
|
config.load_defaults 5.0
|
|
config.paths.add File.join('app', 'bot'), glob: File.join('**', '*.rb')
|
|
config.autoload_paths += Dir[Rails.root.join('app', 'bot', '*')]
|
|
config.autoload_paths << Rails.root.join('lib')
|
|
config.eager_load_paths << Rails.root.join('lib')
|
|
|
|
# Settings in config/environments/* take precedence over those specified here.
|
|
# Application configuration can go into files in config/initializers
|
|
# -- all .rb files in that directory are automatically loaded after loading
|
|
# the framework and any gems in your application.
|
|
end
|
|
end
|