[Source]
# File lib/rails-footnotes/notes/components_note.rb, line 18 def title @note_title ||= self.name.match(/^Footnotes::Notes::(\w+)ComponentNote$/)[1] end
# File lib/rails-footnotes/notes/components_note.rb, line 14 def to_sym @note_sym ||= "#{self.title.underscore}_component_#{(rand*1000).to_i}".to_sym end
[Validate]