0.01
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Wunderlist Bindings for Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 0
 Project Readme

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