Module: Hanami::Helpers::RoutingHelper
- Defined in:
- lib/hanami/helpers/routing_helper.rb
Overview
Routing helper for full stack Hanami web applications.
For a given application called Web::Application, at runtime Hanami creates a routes factory called Web.routes.
By including this module in a view, it makes that factory avaliable as routes.
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
43 44 45 46 47 48 49 50 51 |
# File 'lib/hanami/helpers/routing_helper.rb', line 43 def self.included(base) factory = "#{Utils::String.new(base).namespace}.routes" base.class_eval <<-END_EVAL, __FILE__, __LINE__ def routes #{factory} end END_EVAL end |