https://github.com/jnunemaker/mirrored
[DEAD] Mirrored is a wrapper for the mirrored del.icio.us and ma.gnolia apis.
https://github.com/jnunemaker/mirrored
Last synced: 10 months ago
JSON representation
[DEAD] Mirrored is a wrapper for the mirrored del.icio.us and ma.gnolia apis.
- Host: GitHub
- URL: https://github.com/jnunemaker/mirrored
- Owner: jnunemaker
- License: mit
- Created: 2008-02-14T02:49:56.000Z (about 18 years ago)
- Default Branch: master
- Last Pushed: 2009-05-11T21:04:33.000Z (about 17 years ago)
- Last Synced: 2025-03-31T09:02:29.288Z (about 1 year ago)
- Language: Ruby
- Homepage: http://mirrored.rubyforge.org/
- Size: 418 KB
- Stars: 11
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
- Changelog: History.txt
- License: License.txt
Awesome Lists containing this project
README
= 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).