Project

instapush

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby wrapper for the Instapaper API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

InstaPush

Add URLs to Instapaper.

Installation

gem install instapush

Usage

Connect to Instapaper and add "http://kimjoar.net" to the user "kjbekkelund@gmail.com". The password is optional and can be omitted when you don't have a password on Instapaper.

InstaPush.connect "kjbekkelund@gmail.com", "password" do
  add "http://kimjoar.net"
end

Similarly you can use:

conn = InstaPush.connect "kjbekkelund@gmail.com", "password"
conn.add "http://kimjoar.net"

Just authenticate with Instapaper. Calling this before adding pages is not necessary.

InstaPush.authenticate "kjbekkelund@gmail.com", "password"

In the wild