picasa 0.7.1 → 0.7.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.
- checksums.yaml +4 -4
- data/lib/picasa/api/album.rb +1 -1
- data/lib/picasa/api/photo.rb +27 -0
- data/lib/picasa/presenter/photo.rb +1 -1
- data/lib/picasa/templates/update_photo.xml.erb +34 -0
- data/lib/picasa/version.rb +1 -1
- data/picasa.gemspec +1 -1
- data/test/api/album_test.rb +1 -1
- data/test/api/photo_update_test.rb +58 -0
- data/test/cassettes/photo-move.yml +1361 -0
- data/test/cassettes/photo-update.yml +1088 -0
- metadata +11 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: picasa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wojciech Wnętrzak
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-11-
|
11
|
+
date: 2013-11-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -28,14 +28,14 @@ dependencies:
|
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - '>='
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '1.3'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1.3'
|
41
41
|
- !ruby/object:Gem::Dependency
|
@@ -159,6 +159,7 @@ files:
|
|
159
159
|
- lib/picasa/templates/new_comment.xml.erb
|
160
160
|
- lib/picasa/templates/new_photo.xml.erb
|
161
161
|
- lib/picasa/templates/new_tag.xml.erb
|
162
|
+
- lib/picasa/templates/update_photo.xml.erb
|
162
163
|
- lib/picasa/utils.rb
|
163
164
|
- lib/picasa/version.rb
|
164
165
|
- picasa.gemspec
|
@@ -166,6 +167,7 @@ files:
|
|
166
167
|
- test/api/album_update_test.rb
|
167
168
|
- test/api/comment_test.rb
|
168
169
|
- test/api/photo_test.rb
|
170
|
+
- test/api/photo_update_test.rb
|
169
171
|
- test/api/tag_test.rb
|
170
172
|
- test/cassettes/album-404.yml
|
171
173
|
- test/cassettes/album-create.yml
|
@@ -182,6 +184,8 @@ files:
|
|
182
184
|
- test/cassettes/photo-412.yml
|
183
185
|
- test/cassettes/photo-create.yml
|
184
186
|
- test/cassettes/photo-destroy.yml
|
187
|
+
- test/cassettes/photo-move.yml
|
188
|
+
- test/cassettes/photo-update.yml
|
185
189
|
- test/cassettes/tag-create.yml
|
186
190
|
- test/cassettes/tag-destroy.yml
|
187
191
|
- test/cassettes/tag-list.yml
|
@@ -224,6 +228,7 @@ test_files:
|
|
224
228
|
- test/api/album_update_test.rb
|
225
229
|
- test/api/comment_test.rb
|
226
230
|
- test/api/photo_test.rb
|
231
|
+
- test/api/photo_update_test.rb
|
227
232
|
- test/api/tag_test.rb
|
228
233
|
- test/cassettes/album-404.yml
|
229
234
|
- test/cassettes/album-create.yml
|
@@ -240,6 +245,8 @@ test_files:
|
|
240
245
|
- test/cassettes/photo-412.yml
|
241
246
|
- test/cassettes/photo-create.yml
|
242
247
|
- test/cassettes/photo-destroy.yml
|
248
|
+
- test/cassettes/photo-move.yml
|
249
|
+
- test/cassettes/photo-update.yml
|
243
250
|
- test/cassettes/tag-create.yml
|
244
251
|
- test/cassettes/tag-destroy.yml
|
245
252
|
- test/cassettes/tag-list.yml
|