picasa 0.3 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/picasa/version.rb +1 -1
- data/lib/picasa/web_albums.rb +1 -0
- data/test/test_web_albums.rb +1 -0
- metadata +7 -7
data/lib/picasa/version.rb
CHANGED
data/lib/picasa/web_albums.rb
CHANGED
@@ -32,6 +32,7 @@ module Picasa
|
|
32
32
|
photos = []
|
33
33
|
xml["entry"].each do |photo|
|
34
34
|
attributes = {}
|
35
|
+
attributes[:id] = photo["id"][1]
|
35
36
|
attributes[:title] = photo["group"][0]["description"][0]["content"]
|
36
37
|
attributes[:thumbnail_1] = photo["group"][0]["thumbnail"][0]["url"]
|
37
38
|
attributes[:thumbnail_2] = photo["group"][0]["thumbnail"][1]["url"]
|
data/test/test_web_albums.rb
CHANGED
@@ -22,6 +22,7 @@ describe Picasa::WebAlbums do
|
|
22
22
|
photos = Picasa.photos(:google_user => "some.user", :album_id => "666")
|
23
23
|
assert_equal 10, photos[:photos].count
|
24
24
|
refute_nil photos[:slideshow]
|
25
|
+
refute_nil photos[:photos].first[:id]
|
25
26
|
refute_nil photos[:photos].first[:thumbnail_1]
|
26
27
|
refute_nil photos[:photos].first[:thumbnail_2]
|
27
28
|
refute_nil photos[:photos].first[:thumbnail_3]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: picasa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.3.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2012-02-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: xml-simple
|
16
|
-
requirement: &
|
16
|
+
requirement: &82975310 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *82975310
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: fakeweb
|
27
|
-
requirement: &
|
27
|
+
requirement: &82975100 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *82975100
|
36
36
|
description: Simple Google Picasa managment
|
37
37
|
email:
|
38
38
|
- w.wnetrzak@gmail.com
|
@@ -95,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
95
|
version: '0'
|
96
96
|
requirements: []
|
97
97
|
rubyforge_project:
|
98
|
-
rubygems_version: 1.8.
|
98
|
+
rubygems_version: 1.8.15
|
99
99
|
signing_key:
|
100
100
|
specification_version: 3
|
101
101
|
summary: simple google picasa managment
|