0.0
No commit activity in last 3 years
No release in over 3 years
description: rememberthemilk kicks the ass
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme
NAME
  rememberthemilk.rb


DESCRIPTION
  simple (162 loc), json only, interface to the excellent RememberTheMilk API

    http://www.rememberthemilk.com/services/api/methods/

  supports all methods including the complicated frob/auth get token logic


SYNOPSIS
  config = {
    :api_key => api_key,
    :shared_secret => shared_secret,
    :username => username,
    :password => password
  }

  api = RememberTheMilk.new(config)

  token = api.get_token!

  config[:token] = token

  api = RememberTheMilk.new(config)

  jj api.ping

  jj api.call('rtm.tasks.getList')

  jj api.call('rtm.contacts.getList')

  # etc