1
0
Fork 0
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:
David Heinemeier Hansson 2017-07-22 09:47:24 -05:00
parent 5b7c31c23a
commit d50679f4ee
14 changed files with 3 additions and 1 deletions

View file

@ -1,4 +1,4 @@
require_relative "log_subscriber"
require "active_storage/log_subscriber"
# Abstract class serving as an interface for concrete services.
#

View file

@ -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"