Sha256: 7e0b51824aae5f6414402f11dd5271cf7affc6c4281e5e206558e11ef746153e

Contents?: true

Size: 1.07 KB

Versions: 4

Compression:

Stored size: 1.07 KB

Contents

= smile

Smile is a simple gem to talk to SmugMug.com.
This gem wraps the 1.2.0 interface.

== New Features

=== Search feeds
  Smile.search( 'blueberries' ) => [Smile::Photo] 
  Smile.search_rss( 'bison' ) => RSS::Parser Feed
  Smile.search_raw( 'grand' ) => Raw response from the feed

===New auth accessors
  smug = Smile.auth_anonymously
  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

==== Old auth accessors ( NOTE: These are still supported )
  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
* Create better exception handlers
* Update Documentation ( getting there.  it's being published on rdoc.info now )
* Plugin in Cucumber


== Copyright

Copyright (c) 2009 cajun. See LICENSE for details.

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
cajun-smile-0.2.0 README.rdoc
cajun-smile-0.2.1 README.rdoc
smile-0.2.1 README.rdoc
smile-0.2.0 README.rdoc