Class: Footnotes::Notes::ParamsNote
Instance Method Summary
collapse
close!, #has_fieldset?, included?, #javascript, #legend, #link, #onclick, #row, start!, #stylesheet, title, #to_sym, to_sym, #valid?
Constructor Details
#initialize(controller) ⇒ ParamsNote
6
7
8
|
# File 'lib/rails-footnotes/notes/params_note.rb', line 6
def initialize(controller)
@params = controller.params.symbolize_keys
end
|
Instance Method Details
#content ⇒ Object
14
15
16
|
# File 'lib/rails-footnotes/notes/params_note.rb', line 14
def content
escape(@params.inspect)
end
|
#title ⇒ Object
10
11
12
|
# File 'lib/rails-footnotes/notes/params_note.rb', line 10
def title
"Params (#{@params.length})"
end
|