Class: Footnotes::Notes::RoutesNote

Inherits:
AbstractNote show all
Defined in:
lib/rails-footnotes/notes/routes_note.rb

Instance Method Summary collapse

Methods inherited from AbstractNote

close!, #has_fieldset?, included?, #javascript, #link, #onclick, #row, start!, #stylesheet, #title, title, #to_sym, to_sym, #valid?

Constructor Details

#initialize(controller) ⇒ RoutesNote

Returns a new instance of RoutesNote.



6
7
8
9
# File 'lib/rails-footnotes/notes/routes_note.rb', line 6

def initialize(controller)
  @controller = controller
  @parsed_routes = parse_routes
end

Instance Method Details

#contentObject



15
16
17
# File 'lib/rails-footnotes/notes/routes_note.rb', line 15

def content
  mount_table(@parsed_routes.unshift([:path, :name, :options, :requirements]))
end

#legendObject



11
12
13
# File 'lib/rails-footnotes/notes/routes_note.rb', line 11

def legend
  "Routes for #{@controller.class.to_s}"
end