Returns a module with all the helpers defined for the engine.
# File railties/lib/rails/engine.rb, line 501
def helpers
@helpers ||= begin
helpers = Module.new
AbstractController::Helpers.helper_modules_from_paths(helpers_paths).each do |mod|
helpers.include(mod)
end
helpers
end
end