README.rdoc in cajun-smile-0.1.2 vs README.rdoc in cajun-smile-0.1.3
- old
+ new
@@ -1,25 +1,39 @@
= smile
Smile is a simple gem to talk to SmugMug.com.
-smug = Smile::Smug.new
-smug.auth_anonymously
-albums = smug.albums( :NickName => 'kleinpeter' )
+New auth accessors
+ smug = Smile.auth_anonymously
+ _and_
+ smug = Smile.auth( 'nick', 'pass' )
-album = albums.first # just test the first one
-album.photos # and see the pretty pics
+ smug = Smile::Smug.new
+ smug.auth_anonymously
+ albums = smug.albums( :NickName => 'kleinpeter' )
- -- or --
+ album = albums.first # just test the first one
+
+ album.photos # and see the pretty pics
+
+== or
-smug = Smile::Smug.new
-smug.auth( 'my_nick', 'my_pass' )
-albums = smug.albums # theses are mine
+ smug = Smile::Smug.new
+ smug.auth( 'my_nick', 'my_pass' )
+ albums = smug.albums # theses are mine
-album = albums.first # just test the first one
+ album = albums.first # just test the first one
-album.photos # and see the pretty pics
+ album.photos # and see the pretty pics
+
+
+== TODO
+* Clean up params so they are not case sensitive
+* Add in RSS/Atom feeds as search options
+* Update Documentation
+* Plugin in Cucumber
+
== Copyright
Copyright (c) 2009 cajun. See LICENSE for details.