diff options
author | Go MAEDA <maeda@farend.jp> | 2019-03-04 11:51:49 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-03-04 11:51:49 +0000 |
commit | 92063eed0470a6976fa8863e327e586286c1f870 (patch) | |
tree | 939374bcaee4ef061515a52fdd8b3e2cadfdeacc | |
parent | c2389242a9be736ab167c43ae4e505385f3544e5 (diff) | |
download | redmine-92063eed0470a6976fa8863e327e586286c1f870.tar.gz redmine-92063eed0470a6976fa8863e327e586286c1f870.zip |
Merged r17923 from trunk to 4.0-stable (#30753).
git-svn-id: http://svn.redmine.org/redmine/branches/4.0-stable@17924 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | lib/redmine/plugin.rb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/redmine/plugin.rb b/lib/redmine/plugin.rb index 4de7c4386..82bcde81f 100644 --- a/lib/redmine/plugin.rb +++ b/lib/redmine/plugin.rb @@ -107,11 +107,12 @@ module Redmine ActionMailer::Base.prepend_view_path(view_path) end - # Adds the app/{controllers,helpers,models} directories of the plugin to the autoload path - Dir.glob File.expand_path(File.join(p.directory, 'app', '{controllers,helpers,models}')) do |dir| - ActiveSupport::Dependencies.autoload_paths += [dir] - Rails.application.config.eager_load_paths += [dir] if Rails.application.config.eager_load - end + # Add the plugin directories to rails autoload paths + engine_cfg = Rails::Engine::Configuration.new(p.directory) + Rails.application.config.eager_load_paths += engine_cfg.eager_load_paths + Rails.application.config.autoload_once_paths += engine_cfg.autoload_once_paths + Rails.application.config.autoload_paths += engine_cfg.autoload_paths + ActiveSupport::Dependencies.autoload_paths += engine_cfg.eager_load_paths + engine_cfg.autoload_once_paths + engine_cfg.autoload_paths # Defines plugin setting if present if p.settings |