Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

fritz0705/ruby-wunderlist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ruby-wunderlist

Deprecated

Important: Wunderlist's undocumented API has changed significantly since the most recent release of this gem. The gem no longer authenticates (see #1) and is unsupported. Pull requests are welcome.

Summary

ruby-wunderlist is an unofficial 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 "johndoe@example.org", "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

[DEPRECATED; WONTFIX] Really old Wunderlist bindings for Ruby

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages