public
Description: Mirrored is a wrapper for the mirrored del.icio.us and ma.gnolia apis.
Homepage: http://mirrored.rubyforge.org/
Clone URL: git://github.com/jnunemaker/mirrored.git
Click here to lend your support to: mirrored and make a donation at www.pledgie.com !
commit  f78c0c9eaf7cd8b8ecee21782be1b13dd60d5865
tree    4020f7da1f1752de0e02562ed8726b02d336472a
parent  88b8a1bddb602eee1f16aa615979a41901743806
README.txt
= Mirrored

Mirrored is a really easy to use wrapper for the delicious api (http://del.icio.us/help/api) and magnolia's mirrored 
version (http://wiki.ma.gnolia.com/Mirror%27d_API).

== Install

  sudo gem install mirrored -y
  
== Usage

1. Setup your connection to either :magnolia or :delicious.

  Mirrored::Base.establish_connection(:magnolia, 'jnunemaker', 'password')

2. Work the mirrored classes (Post, Tag, Update and Date)  

  # => posts tagged ruby
  Mirrored::Post.find(:get, :tag => 'ruby')
  
You can also manipulate tags, find out when your last update was and see information about your posting habits. See the 
rubyforge page for more information (http://mirrored.rubyforge.org).