couch_photo 1.0.0.beta.13 → 1.0.0.beta.14
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/couch_photo/variation_metadata.rb +3 -3
- metadata +4 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.0.beta.
|
1
|
+
1.0.0.beta.14
|
@@ -53,10 +53,10 @@ module CouchPhoto
|
|
53
53
|
tmp_xmp_file_name = "/tmp/#{tmp_image_uuid}.xmp"
|
54
54
|
mini_magick.write tmp_image_file_name
|
55
55
|
`convert #{tmp_image_file_name} #{tmp_xmp_file_name} 2> /dev/null`
|
56
|
-
meta_data = Hash.from_xml File.read(tmp_xmp_file_name)
|
56
|
+
meta_data = Hash.from_xml File.read(tmp_xmp_file_name) rescue {}
|
57
57
|
|
58
|
-
File.safe_unlink(tmp_image_file_name)
|
59
|
-
File.safe_unlink(tmp_xmp_file_name)
|
58
|
+
File.safe_unlink(tmp_image_file_name) rescue nil
|
59
|
+
File.safe_unlink(tmp_xmp_file_name) rescue nil
|
60
60
|
meta_data
|
61
61
|
end
|
62
62
|
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: couch_photo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 62196383
|
5
5
|
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
9
|
- 0
|
10
10
|
- beta
|
11
|
-
-
|
12
|
-
version: 1.0.0.beta.
|
11
|
+
- 14
|
12
|
+
version: 1.0.0.beta.14
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- Matt Parker
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date: 2012-
|
20
|
+
date: 2012-02-17 00:00:00 Z
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
23
23
|
name: cucumber
|