mini_exiftool 2.7.0 → 2.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Changelog +5 -0
- data/Rakefile +1 -1
- data/lib/mini_exiftool.rb +1 -1
- data/test/test_io.rb +3 -3
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b344346a14c755d2136986594dbfd8005a77c29b
|
4
|
+
data.tar.gz: 9f3217fbf1feff109c53eaf6f1c59bd42708c5db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c4f6fc129da87f4c5bea1a6c6d4e909ca26a6dd0115f4b514fdafb5300433f25975789b2873d3b64f4a1a7bfd3b80e2b29519f79bb2f67b3282014cfba99fa2
|
7
|
+
data.tar.gz: 2040f7e6476d528cc16b40ea602a5aeedcca11c86fd320c548b947413b160d3d0e9d2073b1fff0cfd9ec426dde9f51c075f26d8d6e75a1cddb78a875bc6ce4ef
|
data/Changelog
CHANGED
data/Rakefile
CHANGED
@@ -12,7 +12,7 @@ Rim.setup do |p|
|
|
12
12
|
p.email = 'janfri26@gmail.com'
|
13
13
|
p.summary = 'This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).'
|
14
14
|
p.homepage = 'http://gitorious.org/mini_exiftool'
|
15
|
-
p.license = '
|
15
|
+
p.license = 'LGPL-2.1'
|
16
16
|
p.gem_files << 'Tutorial.rdoc'
|
17
17
|
p.install_message = %q{
|
18
18
|
+-----------------------------------------------------------------------+
|
data/lib/mini_exiftool.rb
CHANGED
data/test/test_io.rb
CHANGED
@@ -42,17 +42,17 @@ class TestIo < TestCase
|
|
42
42
|
$stderr = s
|
43
43
|
MiniExiftool.new open_real_io
|
44
44
|
s.rewind
|
45
|
-
|
45
|
+
assert_match /^exiftool -j "-"$/, s.read
|
46
46
|
s = StringIO.new
|
47
47
|
$stderr = s
|
48
48
|
MiniExiftool.new open_real_io, :fast => true
|
49
49
|
s.rewind
|
50
|
-
|
50
|
+
assert_match /^exiftool -j -fast "-"$/, s.read
|
51
51
|
s = StringIO.new
|
52
52
|
$stderr = s
|
53
53
|
MiniExiftool.new open_real_io, :fast2 => true
|
54
54
|
s.rewind
|
55
|
-
|
55
|
+
assert_match /^exiftool -j -fast2 "-"$/, s.read
|
56
56
|
ensure
|
57
57
|
$DEBUG = false
|
58
58
|
$stderr = STDERR
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mini_exiftool
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Friedrich
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rim
|
@@ -68,7 +68,7 @@ files:
|
|
68
68
|
- test/test_write.rb
|
69
69
|
homepage: http://gitorious.org/mini_exiftool
|
70
70
|
licenses:
|
71
|
-
-
|
71
|
+
- LGPL-2.1
|
72
72
|
metadata: {}
|
73
73
|
post_install_message: "\n+-----------------------------------------------------------------------+\n|
|
74
74
|
Please ensure you have installed exiftool at least version 7.65 |\n| and it's
|
@@ -93,8 +93,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
93
|
version: '0'
|
94
94
|
requirements: []
|
95
95
|
rubyforge_project:
|
96
|
-
rubygems_version: 2.6.
|
96
|
+
rubygems_version: 2.6.3
|
97
97
|
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).
|
100
100
|
test_files: []
|
101
|
+
has_rdoc:
|