Given a custom helper file in app / helpers / url_helper.rb
module UrlHelper ... end
How to make it available in all controllers and in all views?
Put it in the ApplicationController (not an assistant) and declare helper_method :method_name .
helper_method :method_name
Or ... include them in your controller
class ApplicationController < ActionController::Base include UrlHelper end