Hi all~
I want to add some methods to ActionController. And I generate a plugin. Although this example looks like strange.
init.rb
require “ac_plugin”
ApplicationController.send(:include, AcPlugin)
lib/ac_plugin.rb
module AcPlugin
def index
render :text => “Hello!”
end
end
And then I open http://localhost/user.xml. It works, but only first time.
When I refresh that page. I got a error “No action responded to index”.
I think: Rails maybe reload ActionController everytime under developmemt mode.
How can I hook this?
Thanks
colder