Rails Helper di Controller

ActionController::Base.helpers.<helper_method>
  
# Exemple :

ActionController::Base.helpers.number_to_human(2500, :format => '%n%u', :units => { :thousand => 'K' })
Lioruby