Class: Googletastic::Album
Constant Summary
Constants included from Mixins::Namespaces
Mixins::Namespaces::NAMESPACES
Instance Attribute Summary
Attributes inherited from Base
#acl, #attachment_path, #created_at, #etag, #head, #id, #keep_raw, #raw, #response, #synced_with, #updated_at
Attributes included from Mixins::Attributes
Class Method Summary collapse
Methods inherited from Base
Methods included from Mixins::Pagination
Methods included from Mixins::Finders
Methods included from Mixins::Parsing
Methods included from Mixins::Requesting
Methods included from Mixins::Attributes
#attribute_names, #has_attribute?, #inspect
Methods included from Mixins::Namespaces
Constructor Details
This class inherits a constructor from Googletastic::Base
Class Method Details
.client_class ⇒ Object
5 6 7 |
# File 'lib/googletastic/album.rb', line 5 def client_class "Photos" end |
.index_url ⇒ Object
9 10 11 |
# File 'lib/googletastic/album.rb', line 9 def index_url "http://picasaweb.google.com/data/feed/api/user/default" end |
.unmarshall(xml) ⇒ Object
13 14 15 16 17 18 |
# File 'lib/googletastic/album.rb', line 13 def unmarshall(xml) records = xml.xpath("//atom:entry", ns_tag("atom")).collect do |record| end records end |