summaryrefslogtreecommitdiffstats
path: root/vendor/plugins/prepend_engine_views/init.rb
blob: cbf0e89a92dd1866875387c72e9daef0a5f63a4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module PrependEngineViews
  def self.included(base)
    base.send(:include, InstanceMethods)
    base.class_eval do
      alias_method_chain :add_engine_view_paths, :prepend
    end
  end

  module InstanceMethods
    # Patch Rails so engine's views are prepended to the view_path,
    # thereby letting plugins override application views
    def add_engine_view_paths_with_prepend
      paths = ActionView::PathSet.new(engines.collect(&:view_path))
      ActionController::Base.view_paths.unshift(*paths)
      ActionMailer::Base.view_paths.unshift(*paths) if configuration.frameworks.include?(:action_mailer)
    end
  end
end

Rails::Plugin::Loader.send :include, PrependEngineViews