mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Move models and jobs to the app setup
Follow engine conventions more closely
This commit is contained in:
parent
5b7c31c23a
commit
d50679f4ee
14 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
require_relative "log_subscriber"
|
||||
require "active_storage/log_subscriber"
|
||||
|
||||
# Abstract class serving as an interface for concrete services.
|
||||
#
|
|
@ -1,4 +1,6 @@
|
|||
$LOAD_PATH << File.expand_path("../../app/controllers", __FILE__)
|
||||
$LOAD_PATH << File.expand_path("../../app/models", __FILE__)
|
||||
$LOAD_PATH << File.expand_path("../../app/jobs", __FILE__)
|
||||
|
||||
require "bundler/setup"
|
||||
require "active_support"
|
||||
|
|
Loading…
Reference in a new issue