mirrored 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +3 -0
- data/README.txt +20 -1
- data/lib/mirrored/version.rb +1 -1
- data/website/index.html +1 -1
- metadata +1 -1
data/History.txt
CHANGED
data/README.txt
CHANGED
@@ -1 +1,20 @@
|
|
1
|
-
|
1
|
+
= Mirrored
|
2
|
+
|
3
|
+
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).
|
4
|
+
|
5
|
+
== Install
|
6
|
+
|
7
|
+
sudo gem install mirrored -y
|
8
|
+
|
9
|
+
== Usage
|
10
|
+
|
11
|
+
1. Setup your connection to either :magnolia or :delicious.
|
12
|
+
|
13
|
+
Mirrored::Base.establish_connection(:magnolia, 'jnunemaker', 'password')
|
14
|
+
|
15
|
+
2. Work the mirrored classes (Post, Tag, Update and Date)
|
16
|
+
|
17
|
+
# => posts tagged ruby
|
18
|
+
Mirrored::Post.find(:get, :tag => 'ruby')
|
19
|
+
|
20
|
+
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).
|
data/lib/mirrored/version.rb
CHANGED
data/website/index.html
CHANGED