Method: CloudFile::Evernote#write_note

Defined in:
lib/cloud_file/providers/evernote.rb

#write_note(book, title, content) ⇒ Object



53
54
55
56
57
58
59
# File 'lib/cloud_file/providers/evernote.rb', line 53

def write_note(book,title,content)
  if get_note_shell(book,title)
    update_note(book,title,content)
  else
    create_note(book,title,content)
  end
end