slaskis-fleakr 0.5.1 → 0.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,30 @@
1
+ module Fleakr
2
+ module Objects # :nodoc:
3
+
4
+ # = Collection
5
+ #
6
+ # == Attributes
7
+ #
8
+ # [id] The ID for this collection
9
+ # [title] The title of this collection
10
+ # [description] The description of this collection
11
+ #
12
+ # == Associations
13
+ #
14
+ # [sets] The collection of sets for this collection. See Fleakr::Objects::Set
15
+ # [collections] All collections associated with this collection.
16
+ #
17
+ class Collection
18
+
19
+ include Fleakr::Support::Object
20
+
21
+ has_many :sets, :collections
22
+
23
+ flickr_attribute :id, :title, :description
24
+
25
+ find_all :by_collection_id, :call => 'collections.getTree', :path => "collections/collection:gt(0)"
26
+ find_all :by_user_id, :call => 'collections.getTree', :path => 'collections/collection'
27
+
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,21 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <rsp stat="ok">
3
+ <collection id="34762917-72157619347181335" child_count="5" datecreate="1244460707" iconlarge="http://farm4.static.flickr.com/3603/cols/72157619347181335_30d89a2682_l.jpg" iconsmall="http://farm4.static.flickr.com/3603/cols/72157619347181335_30d89a2682_s.jpg" server="3603" secret="30d89a2682">
4
+ <title>Work</title>
5
+ <description />
6
+ <iconphotos>
7
+ <photo id="3509228143" owner="34808239@N06" secret="2ed3119372" server="3637" farm="4" title="" ispublic="1" isfriend="0" isfamily="0" />
8
+ <photo id="3509261341" owner="34808239@N06" secret="43a07ee13c" server="3638" farm="4" title="Saab 9X Air" ispublic="1" isfriend="0" isfamily="0" />
9
+ <photo id="3488255219" owner="34808239@N06" secret="b94e2c39c1" server="3624" farm="4" title="" ispublic="1" isfriend="0" isfamily="0" />
10
+ <photo id="3488219705" owner="34808239@N06" secret="d26642a09b" server="3560" farm="4" title="stellaUK_1" ispublic="1" isfriend="0" isfamily="0" />
11
+ <photo id="3489034148" owner="34808239@N06" secret="89d6f94800" server="3577" farm="4" title="abba_kalles_3" ispublic="1" isfriend="0" isfamily="0" />
12
+ <photo id="3488220307" owner="34808239@N06" secret="a96a8acbb0" server="3578" farm="4" title="abba_kalles_1" ispublic="1" isfriend="0" isfamily="0" />
13
+ <photo id="3489034014" owner="34808239@N06" secret="d392cca5d6" server="3124" farm="4" title="abba_kalles_2" ispublic="1" isfriend="0" isfamily="0" />
14
+ <photo id="3489033670" owner="34808239@N06" secret="4f08e7368c" server="3547" farm="4" title="stellaUK_3" ispublic="1" isfriend="0" isfamily="0" />
15
+ <photo id="3488219913" owner="34808239@N06" secret="6bcdeb4bf6" server="3310" farm="4" title="stellaUK_2" ispublic="1" isfriend="0" isfamily="0" />
16
+ <photo id="3509261445" owner="34808239@N06" secret="595cc58f50" server="3313" farm="4" title="Saab 9X Air" ispublic="1" isfriend="0" isfamily="0" />
17
+ <photo id="3488255345" owner="34808239@N06" secret="de5f1b9133" server="3644" farm="4" title="" ispublic="1" isfriend="0" isfamily="0" />
18
+ <photo id="3509228095" owner="34808239@N06" secret="3b0a661db7" server="3392" farm="4" title="" ispublic="1" isfriend="0" isfamily="0" />
19
+ </iconphotos>
20
+ </collection>
21
+ </rsp>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <rsp stat="ok">
3
+ <collections>
4
+ <collection id="34762917-72157617429277370" title="test2" description="" iconlarge="http://farm4.static.flickr.com/3573/cols/72157617429277370_1691956f71_l.jpg" iconsmall="http://farm4.static.flickr.com/3573/cols/72157617429277370_1691956f71_s.jpg">
5
+ <collection id="34762917-72157619347181335" title="Work" description="" iconlarge="http://farm4.static.flickr.com/3603/cols/72157619347181335_30d89a2682_l.jpg" iconsmall="http://farm4.static.flickr.com/3603/cols/72157619347181335_30d89a2682_s.jpg">
6
+ <set id="72157617818350694" title="Pulp Labs" description="" />
7
+ <set id="72157617819409038" title="Saab 9-X Air" description="" />
8
+ <set id="72157617424804795" title="Saab" description="" />
9
+ <set id="72157617516815350" title="Stella Artois UK" description="" />
10
+ <set id="72157617516803796" title="Kalles Kaviar" description="" />
11
+ </collection>
12
+ </collection>
13
+ </collections>
14
+ </rsp>
metadata CHANGED
@@ -1,15 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slaskis-fleakr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Reagan
8
+ - "Robert Sk\xC3\xB6ld"
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
12
 
12
- date: 2009-05-13 00:00:00 -07:00
13
+ date: 2009-07-16 00:00:00 -07:00
13
14
  default_executable:
14
15
  dependencies:
15
16
  - !ruby/object:Gem::Dependency
@@ -73,6 +74,7 @@ files:
73
74
  - lib/fleakr/objects/authentication_token.rb
74
75
  - lib/fleakr/objects/comment.rb
75
76
  - lib/fleakr/objects/contact.rb
77
+ - lib/fleakr/objects/collection.rb
76
78
  - lib/fleakr/objects/error.rb
77
79
  - lib/fleakr/objects/group.rb
78
80
  - lib/fleakr/objects/image.rb
@@ -93,6 +95,8 @@ files:
93
95
  - test/fixtures/auth.checkToken.xml
94
96
  - test/fixtures/auth.getFullToken.xml
95
97
  - test/fixtures/auth.getToken.xml
98
+ - test/fixtures/collections.getInfo.xml
99
+ - test/fixtures/collections.getTree.xml
96
100
  - test/fixtures/contacts.getPublicList.xml
97
101
  - test/fixtures/groups.pools.getPhotos.xml
98
102
  - test/fixtures/people.findByEmail.xml