How do I override the method render?

I did:

Module ActionController
class Base
def render(*args)
super
end
end
end

It says: super: no superclass method `render’

Which is not true because when I look at base.rb I can see the render
method right there. Any ideas what’s going on?

Thanks!