Class: Footnotes::Notes::ControllerNote
Instance Method Summary
collapse
close!, #has_fieldset?, included?, #javascript, #legend, #onclick, start!, #stylesheet, #title, title, #to_sym, to_sym
Constructor Details
Returns a new instance of ControllerNote.
6
7
8
|
# File 'lib/rails-footnotes/notes/controller_note.rb', line 6
def initialize(controller)
@controller = controller
end
|
Instance Method Details
#link ⇒ Object
14
15
16
|
# File 'lib/rails-footnotes/notes/controller_note.rb', line 14
def link
escape(Footnotes::Filter.prefix(controller_filename, controller_line_number + 1, 3))
end
|
#row ⇒ Object
10
11
12
|
# File 'lib/rails-footnotes/notes/controller_note.rb', line 10
def row
:edit
end
|
#valid? ⇒ Boolean
18
19
20
|
# File 'lib/rails-footnotes/notes/controller_note.rb', line 18
def valid?
prefix?
end
|