ruby-on-rails – 在主应用程序中扩展Rails 3引擎的控制器

我在我的应用程序中使用Rails引擎作为宝石.引擎具有多个方法的PostsController,我想在我的主应用程序中扩展控制器逻辑,例如添加一些方法.如果我在主应用程序中创建了PostsController,那么引擎的控制器没有加载.

基于更改ActiveSupport :: Dependencies#require_or_load,有一个问题Rails engines extending functionality提出的解决方

这是唯一/正确的方法吗?如果是的话,我该把代码放在哪里?

EDIT1:

这是Rails 2.x的代码suggested by Andrius

module ActiveSupport::Dependencies
  alias_method :require_or_load_without_multiple,:require_or_load
  def require_or_load(file_name,const_path = nil)
    if file_name.starts_with?(RAILS_ROOT + '/app')
      relative_name = file_name.gsub(RAILS_ROOT,'')
      @engine_paths ||= Rails::Initializer.new(Rails.configuration).plugin_loader.engines.collect {|plugin| plugin.directory }
      @engine_paths.each do |path|
        engine_file = File.join(path,relative_name)
        require_or_load_without_multiple(engine_file,const_path) if File.file?(engine_file)
      end
    end
    require_or_load_without_multiple(file_name,const_path)
  end
end

解决方法

为什么不继承您的应用程序中的引擎控制器类(并将您的路由指向新的子控制器)?声音在概念上类似于扩展内置Devise控制器的方式.

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...