Sha256: 2ed775d432666955fe6aaf72079b2ab9de76d7b1da83453c0a4ce46d554995e2
Contents?: true
Size: 999 Bytes
Versions: 4
Compression:
Stored size: 999 Bytes
Contents
# Picasa Simple google picasa managment. Only for public albums so far. ## Installation ``` gem install picasa ``` ## Usage ``` ruby Picasa.albums(:google_user => 'google_username') # => [ {:id => "666", :title => "satan-album", :photos_count => 6, :photo => "url", # :thumbnail => "url", :slideshow => "url", :summary => "summary"}, # {another one} ] Picasa.photos(:google_user => 'google_username', :album_id => 'album_id') #=> {:photos => [{ :title, :thumbnail_1, :thumbnail_2, :thumbnail_3, :photo },{}], # :slideshow => "link to picasa slideshow"} ``` or you can set google user for all requests like this: ``` ruby Picasa.config do |c| c.google_user = 'google.user' end ``` and use it: ``` ruby Picasa.albums Picasa.photos(:album_id => 'album_id') ``` ## Continuous Integration [](http://travis-ci.org/morgoth/picasa) ## Copyright Copyright (c) 2011 Wojciech Wnętrzak, released under the MIT license.
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
picasa-0.3.3 | README.md |
picasa-0.3.2 | README.md |
picasa-0.3.1 | README.md |
picasa-0.3 | README.md |