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
Search Repo:
name age message
folder History.txt Wed Feb 13 18:49:14 -0800 2008 tweaked destroy and save to be a little less br... [jnunemaker]
folder License.txt Wed Feb 13 18:49:14 -0800 2008 tweaked destroy and save to be a little less br... [jnunemaker]
folder Manifest.txt Wed Feb 13 18:49:14 -0800 2008 tweaked destroy and save to be a little less br... [jnunemaker]
folder README.txt Sat Oct 06 15:45:54 -0700 2007 updated readme file [jnunemaker]
folder Rakefile Sat Oct 06 12:32:54 -0700 2007 added mirrored gem that i've created to wrap th... [jnunemaker]
folder config/ Sun Oct 28 13:31:34 -0700 2007 0.1.4 release [jnunemaker]
folder lib/ Wed Feb 13 23:37:50 -0800 2008 switching to self. for class methods from class... [jnunemaker]
folder script/ Sat Oct 06 12:32:54 -0700 2007 added mirrored gem that i've created to wrap th... [jnunemaker]
folder setup.rb Sat Oct 06 12:32:54 -0700 2007 added mirrored gem that i've created to wrap th... [jnunemaker]
folder tasks/ Sat Oct 06 12:32:54 -0700 2007 added mirrored gem that i've created to wrap th... [jnunemaker]
folder test/ Sun Oct 28 12:56:41 -0700 2007 version 0.1.3, made hpricot requirements less r... [jnunemaker]
folder website/ Mon Nov 19 17:04:45 -0800 2007 initial import of googlebase gem [jnunemaker]
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).