Method: Deas::Route#initialize

Defined in:
lib/deas/route.rb

#initialize(method, path, handler_proxy) ⇒ Route

Returns a new instance of Route.



8
9
10
# File 'lib/deas/route.rb', line 8

def initialize(method, path, handler_proxy)
  @method, @path, @handler_proxy = method, path, handler_proxy
end