class RoadForest::Application::InterfaceBuilder

Attributes

interface_class[R]

Public Class Methods

new(interface_class) click to toggle source
# File lib/roadforest/application/route-adapter.rb, line 144
def initialize(interface_class)
  @interface_class = interface_class
end

Public Instance Methods

call(name, params, router, services) click to toggle source
# File lib/roadforest/application/route-adapter.rb, line 148
def call(name, params, router, services)
  interface_class.new(name, params, router, services)
end