Method: FsTemplate::TemplateFile#split_note_and_body
- Defined in:
- lib/fs_template/template_file.rb
#split_note_and_body ⇒ Object
90 91 92 93 94 95 96 |
# File 'lib/fs_template/template_file.rb', line 90 def split_note_and_body [:split_note_and_body_short,:split_note_and_body_long].each do |meth| res = send(meth) return res if res end {:note => nil, :body => full_body} end |