Project

plurb

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

Runtime

~> 0.5.1
 Project Readme

Plurb

Another Plurk API wrapper for Ruby.

Features

Plurb allows us to use the following Plurk API endpoints:

  • Get Plurks
  • Add Plurk
  • Edit Plurk
  • Delete Plurk

There are still a lot of other features of Plurk accessible through their endpoints. Will add more of them to Plurb.

Installation

gem install plurb

Usage

require 'plurb'

client = Plurb::Client.new('your_app_key', 'your_app_secret')
client.authorize('your_user_token', 'your_user_token_secret')

client.get_plurks # retrieving plurks from your timeline
client.plurk('you a Merry Christmas', 'wishes') # plurks: `wishes` you a Merry Christmas
client.edit_plurk(543623, 'you a happy new year') # edits previous plurk to: `wishes` you a happy new year
client.delete_plurk(543623)

Contributing

  • Fork this repository
  • Create a new branch, implement your awesome feature
  • Create a pull request

License

MIT License