Returns a new instance of Note.
28 29 30 31 32 33 34 35
# File 'lib/collavoce/note.rb', line 28 def initialize(note) case note when String init_from_string(note) when Note init_from_note(note) end end