Method: EvernoteUploader#upload
- Defined in:
- lib/evernote_uploader.rb
#upload ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/evernote_uploader.rb', line 31 def upload puts "uploading #{@filenames.join(", ")}" puts "Notebook: #{@notebook.name}" puts "Title: #{@note.title}" puts "tags #{@options[:tags]}" puts "..." @note_store.createNote(@token, @note) puts "done!" end |