Dr Nic's Journey

The small things in my day so I don't clutter the Dr Nic site.

Areas of interest: Ruby, Rails, JavaScript, Editors, and my life in general.

Subscribe:

Dr Nic Blog:

Using Rails routes anywhere

via ara’s snippet

#
# this is how to use action_controller routes in a class/module other that the
# rails' view and controller classes
class C
ActionController::Routing::Routes.install_helpers C
def initialize
@home_path = home_path
end
end
toolmantim