Skip to content

Wunderlist Bindings for Ruby (The readme example code seems to be broken)

License

Notifications You must be signed in to change notification settings

mkacz/ruby-wunderlist

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ruby-wunderlist

ruby-wunderlist is an inofficial Ruby binding for the undocumented Wunderlist API.

Features:

  • Change list names
  • Get all tasks of a list
  • Filter lists
  • Reuse login session

Dependencies

Example

require "wunderlist"
api = Wunderlist::API.new

# Login with your credentials
api.login "[email protected]", "mypassword"

# Get the inbox list
inbox = api.inbox

# Get all overdue tasks
overdue = inbox.done

overdue.each do |task|
  task.done = true
  task.save
end

About

Wunderlist Bindings for Ruby (The readme example code seems to be broken)

Resources

License

Stars

Watchers

Forks

Packages

No packages published