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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8a1a8c6d521b719133ac256c568185efbb46b261
4
- data.tar.gz: 538c8f074435883a599b39a522e4e24d15c8a7d6
3
+ metadata.gz: b344346a14c755d2136986594dbfd8005a77c29b
4
+ data.tar.gz: 9f3217fbf1feff109c53eaf6f1c59bd42708c5db
5
5
  SHA512:
6
- metadata.gz: cd2cbfa6f6b5b0f11d30dec2c7a0b4cbd6566120d7a86065d62340607ba746bd0ea0ec7d07d45f1a88c77d96357cca9750b1ba49be72bc135a9f51d2520bda5a
7
- data.tar.gz: 1ae605775fb808b8e26b486c6addd8c99c0b5d859b0c159fadbd888578b5aa7f09eeafdff2c9dd958e2174e86b3537af4c375f420178bc948e91b2ee3fe5fd79
6
+ metadata.gz: 7c4f6fc129da87f4c5bea1a6c6d4e909ca26a6dd0115f4b514fdafb5300433f25975789b2873d3b64f4a1a7bfd3b80e2b29519f79bb2f67b3282014cfba99fa2
7
+ data.tar.gz: 2040f7e6476d528cc16b40ea602a5aeedcca11c86fd320c548b947413b160d3d0e9d2073b1fff0cfd9ec426dde9f51c075f26d8d6e75a1cddb78a875bc6ce4ef
data/Changelog CHANGED
@@ -1,3 +1,8 @@
1
+ 2.7.1
2
+ - Improve test for fast options: Ignore other messages from stderr.
3
+ - Fix typo in license identifier.
4
+ - Improve example show_speedup_with_fast_option.
5
+
1
6
  2.7.0
2
7
  - Use duck typing to determine if filename_or_io is a filename or an IO
3
8
  instance.
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 = 'LPGLv2'
15
+ p.license = 'LGPL-2.1'
16
16
  p.gem_files << 'Tutorial.rdoc'
17
17
  p.install_message = %q{
18
18
  +-----------------------------------------------------------------------+
@@ -26,7 +26,7 @@ require 'time'
26
26
  # Simple OO access to the Exiftool command-line application.
27
27
  class MiniExiftool
28
28
 
29
- VERSION = '2.7.0'
29
+ VERSION = '2.7.1'
30
30
 
31
31
  # Name of the Exiftool command-line application
32
32
  @@cmd = 'exiftool'
@@ -42,17 +42,17 @@ class TestIo < TestCase
42
42
  $stderr = s
43
43
  MiniExiftool.new open_real_io
44
44
  s.rewind
45
- assert_equal 'exiftool -j "-"', s.read.chomp
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
- assert_equal 'exiftool -j -fast "-"', s.read.chomp
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
- assert_equal 'exiftool -j -fast2 "-"', s.read.chomp
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.0
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-06 00:00:00.000000000 Z
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
- - LPGLv2
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.2
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: