Sha256: 987cc6c246744f1deba6705e91201dbdb49a989f06e9bd2e2545ff69a2df0346

Contents?: true

Size: 354 Bytes

Versions: 1

Compression:

Stored size: 354 Bytes

Contents

module Picasa
  require 'net/http'
  require "xmlsimple"

  require 'web_albums.rb'

  def self.albums(options = {})
    web_albums = Picasa::WebAlbums.new(options[:google_user])
    web_albums.albums
  end

  def self.photos(options = {})
    web_albums = Picasa::WebAlbums.new(options[:google_user])
    web_albums.photos(options[:album_id])
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
morgoth-picasa-0.1.2 lib/picasa.rb