Sha256: 0f9d7fee2de73d3e81bc2ec6c016177a21a4b752a385967309154286e6442044

Contents?: true

Size: 764 Bytes

Versions: 2

Compression:

Stored size: 764 Bytes

Contents

= smile

Smile is a simple gem to talk to SmugMug.com.

New auth accessors
  smug = Smile.auth_anonymously
   _and_
  smug = Smile.auth( 'nick', 'pass' )


  smug = Smile::Smug.new
  smug.auth_anonymously
  albums = smug.albums( :NickName => 'kleinpeter' )

  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

  album = albums.first # just test the first one

  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.

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
cajun-smile-0.1.3 README.rdoc
smile-0.1.3 README.rdoc