我正在尝试创建一个 gem 来扩展 Rails ActionView Renderer 以打印带有渲染的部分视图名称的 HTML 注释。
我尝试了正常的方式:
module MyGem
class Engine < ::Rails::Engine
initializer 'mygem.initialize' do
::ActiveSupport.on_load(:action_view) do
::ActionView::Renderer.send :include, MyGem::ViewRenderer
end
end
end
end
然后在 mygem/lib/view_renderer.rb 中:
module MyGem
module ViewRenderer
module InstanceMethods
def render(context, options)
puts "here" # Just to test it was included and it doesn't print
if options.key?(:partial)
render_partial(context, options)
else
render_template(context, options)
end
end
end
def self.included(base)
base.send :include, InstanceMethods
end
end
end
但是,当我render
从我的视图中使用时,添加的测试行不起作用。
知道我在做什么错吗?