picasa 0.1.7 → 0.1.8
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.
- data/VERSION.yml +1 -1
- data/lib/picasa/web_albums.rb +2 -2
- data/picasa.gemspec +2 -2
- metadata +2 -2
data/VERSION.yml
CHANGED
data/lib/picasa/web_albums.rb
CHANGED
|
@@ -23,7 +23,7 @@ module Picasa
|
|
|
23
23
|
attributes[:photo] = album['group'][0]['content']['url']
|
|
24
24
|
attributes[:thumbnail] = album['group'][0]['thumbnail'][0]['url']
|
|
25
25
|
albums << attributes
|
|
26
|
-
end
|
|
26
|
+
end if xml['entry']
|
|
27
27
|
albums
|
|
28
28
|
end
|
|
29
29
|
|
|
@@ -40,7 +40,7 @@ module Picasa
|
|
|
40
40
|
#attributes[:photo] << photo['group'][0]['content']['url']
|
|
41
41
|
attributes[:photo] = photo['content']['src']
|
|
42
42
|
photos << attributes
|
|
43
|
-
end
|
|
43
|
+
end if xml['entry']
|
|
44
44
|
{ :photos => photos, :slideshow => xml['link'][2]['href'] }
|
|
45
45
|
end
|
|
46
46
|
|
data/picasa.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{picasa}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.8"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Wojciech Wnętrzak"]
|
|
12
|
-
s.date = %q{2009-12-
|
|
12
|
+
s.date = %q{2009-12-10}
|
|
13
13
|
s.description = %q{Simple Google Picasa managment}
|
|
14
14
|
s.email = %q{w.wnetrzak@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
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: 0.1.
|
|
4
|
+
version: 0.1.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "Wojciech Wn\xC4\x99trzak"
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-12-
|
|
12
|
+
date: 2009-12-10 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|