Method: Usher::Route#grapher

Defined in:
lib/usher/route.rb

#grapherObject



21
22
23
24
25
26
27
# File 'lib/usher/route.rb', line 21

def grapher
  unless @grapher
    @grapher = Grapher.new
    @grapher.add_route(self)
  end
  @grapher
end