multi_exiftool 0.1.2 → 0.1.3
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/CHANGELOG +2 -0
- data/README +2 -2
- data/Rakefile +1 -1
- data/multi_exiftool.gemspec +11 -12
- metadata +42 -59
data/CHANGELOG
CHANGED
data/README
CHANGED
|
@@ -42,8 +42,8 @@ See the examples in the examples directory.
|
|
|
42
42
|
== Requirements
|
|
43
43
|
|
|
44
44
|
- Ruby 1.9.1 or higher
|
|
45
|
-
- An installation of the Exiftool command-line application.
|
|
46
|
-
Instructions for installation you can find under
|
|
45
|
+
- An installation of the Exiftool command-line application (version 7.65 or
|
|
46
|
+
higher). Instructions for installation you can find under
|
|
47
47
|
http://www.sno.phy.queensu.ca/~phil/exiftool/install.html .
|
|
48
48
|
|
|
49
49
|
== Installation
|
data/Rakefile
CHANGED
|
@@ -6,7 +6,7 @@ Echoe.new('multi_exiftool') do |p|
|
|
|
6
6
|
p.summary = 'This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).'
|
|
7
7
|
p.description = 'This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool) written by Phil Harvey. It is designed for dealing with multiple files at once by creating commands to call exiftool with various arguments, call it and parsing the results.'
|
|
8
8
|
p.ruby_version = '>=1.9.1'
|
|
9
|
-
p.url = 'http://
|
|
9
|
+
p.url = 'http://gitorious.org/multi_exiftool'
|
|
10
10
|
p.install_message = %q{
|
|
11
11
|
+-----------------------------------------------------------------------+
|
|
12
12
|
| Please ensure you have installed exiftool version 7.65 or higher and |
|
data/multi_exiftool.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{multi_exiftool}
|
|
5
|
-
s.version = "0.1.
|
|
5
|
+
s.version = "0.1.3"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
|
-
s.authors = [
|
|
9
|
-
s.date = %q{
|
|
8
|
+
s.authors = [%q{Jan Friedrich}]
|
|
9
|
+
s.date = %q{2011-09-27}
|
|
10
10
|
s.description = %q{This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool) written by Phil Harvey. It is designed for dealing with multiple files at once by creating commands to call exiftool with various arguments, call it and parsing the results.}
|
|
11
11
|
s.email = %q{janfri26@gmail.com}
|
|
12
|
-
s.extra_rdoc_files = [
|
|
13
|
-
s.files = [
|
|
14
|
-
s.homepage = %q{http://
|
|
12
|
+
s.extra_rdoc_files = [%q{CHANGELOG}, %q{LICENSE}, %q{README}, %q{lib/multi_exiftool.rb}, %q{lib/multi_exiftool/executable.rb}, %q{lib/multi_exiftool/reader.rb}, %q{lib/multi_exiftool/values.rb}, %q{lib/multi_exiftool/writer.rb}]
|
|
13
|
+
s.files = [%q{CHANGELOG}, %q{LICENSE}, %q{Manifest}, %q{README}, %q{Rakefile}, %q{examples/01_simple_reading.rb}, %q{examples/02_simple_writing.rb}, %q{examples/03_reading_using_groups.rb}, %q{lib/multi_exiftool.rb}, %q{lib/multi_exiftool/executable.rb}, %q{lib/multi_exiftool/reader.rb}, %q{lib/multi_exiftool/values.rb}, %q{lib/multi_exiftool/writer.rb}, %q{test/helper.rb}, %q{test/test_reader.rb}, %q{test/test_values.rb}, %q{test/test_values_using_groups.rb}, %q{test/test_writer.rb}, %q{multi_exiftool.gemspec}]
|
|
14
|
+
s.homepage = %q{http://gitorious.org/multi_exiftool}
|
|
15
15
|
s.post_install_message = %q{
|
|
16
16
|
+-----------------------------------------------------------------------+
|
|
17
17
|
| Please ensure you have installed exiftool version 7.65 or higher and |
|
|
@@ -20,17 +20,16 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
| http://www.sno.phy.queensu.ca/~phil/exiftool/install.html |
|
|
21
21
|
+-----------------------------------------------------------------------+
|
|
22
22
|
}
|
|
23
|
-
s.rdoc_options = [
|
|
24
|
-
s.require_paths = [
|
|
23
|
+
s.rdoc_options = [%q{--line-numbers}, %q{--inline-source}, %q{--title}, %q{Multi_exiftool}, %q{--main}, %q{README}]
|
|
24
|
+
s.require_paths = [%q{lib}]
|
|
25
25
|
s.required_ruby_version = Gem::Requirement.new(">= 1.9.1")
|
|
26
|
-
s.requirements = [
|
|
26
|
+
s.requirements = [%q{exiftool, version 7.65 or higher}]
|
|
27
27
|
s.rubyforge_project = %q{multi_exiftool}
|
|
28
|
-
s.rubygems_version = %q{1.
|
|
28
|
+
s.rubygems_version = %q{1.8.6.1}
|
|
29
29
|
s.summary = %q{This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).}
|
|
30
|
-
s.test_files = [
|
|
30
|
+
s.test_files = [%q{test/test_reader.rb}, %q{test/test_values.rb}, %q{test/test_values_using_groups.rb}, %q{test/test_writer.rb}]
|
|
31
31
|
|
|
32
32
|
if s.respond_to? :specification_version then
|
|
33
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
34
33
|
s.specification_version = 3
|
|
35
34
|
|
|
36
35
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
metadata
CHANGED
|
@@ -1,42 +1,35 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: multi_exiftool
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
- 0
|
|
7
|
-
- 1
|
|
8
|
-
- 2
|
|
9
|
-
version: 0.1.2
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.3
|
|
5
|
+
prerelease:
|
|
10
6
|
platform: ruby
|
|
11
|
-
authors:
|
|
7
|
+
authors:
|
|
12
8
|
- Jan Friedrich
|
|
13
9
|
autorequire:
|
|
14
10
|
bindir: bin
|
|
15
11
|
cert_chain: []
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
dependencies:
|
|
20
|
-
- !ruby/object:Gem::Dependency
|
|
12
|
+
date: 2011-09-27 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
21
15
|
name: contest
|
|
22
|
-
|
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
|
16
|
+
requirement: &2161611280 !ruby/object:Gem::Requirement
|
|
24
17
|
none: false
|
|
25
|
-
requirements:
|
|
26
|
-
- -
|
|
27
|
-
- !ruby/object:Gem::Version
|
|
28
|
-
|
|
29
|
-
- 0
|
|
30
|
-
version: "0"
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
31
22
|
type: :development
|
|
32
|
-
|
|
33
|
-
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: *2161611280
|
|
25
|
+
description: This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool)
|
|
26
|
+
written by Phil Harvey. It is designed for dealing with multiple files at once by
|
|
27
|
+
creating commands to call exiftool with various arguments, call it and parsing the
|
|
28
|
+
results.
|
|
34
29
|
email: janfri26@gmail.com
|
|
35
30
|
executables: []
|
|
36
|
-
|
|
37
31
|
extensions: []
|
|
38
|
-
|
|
39
|
-
extra_rdoc_files:
|
|
32
|
+
extra_rdoc_files:
|
|
40
33
|
- CHANGELOG
|
|
41
34
|
- LICENSE
|
|
42
35
|
- README
|
|
@@ -45,7 +38,7 @@ extra_rdoc_files:
|
|
|
45
38
|
- lib/multi_exiftool/reader.rb
|
|
46
39
|
- lib/multi_exiftool/values.rb
|
|
47
40
|
- lib/multi_exiftool/writer.rb
|
|
48
|
-
files:
|
|
41
|
+
files:
|
|
49
42
|
- CHANGELOG
|
|
50
43
|
- LICENSE
|
|
51
44
|
- Manifest
|
|
@@ -65,53 +58,43 @@ files:
|
|
|
65
58
|
- test/test_values_using_groups.rb
|
|
66
59
|
- test/test_writer.rb
|
|
67
60
|
- multi_exiftool.gemspec
|
|
68
|
-
|
|
69
|
-
homepage: http://rubyforge.org/projects/multiexiftool
|
|
61
|
+
homepage: http://gitorious.org/multi_exiftool
|
|
70
62
|
licenses: []
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
+-----------------------------------------------------------------------+\n "
|
|
79
|
-
rdoc_options:
|
|
63
|
+
post_install_message: ! "\n+-----------------------------------------------------------------------+\n|
|
|
64
|
+
Please ensure you have installed exiftool version 7.65 or higher and |\n| it's
|
|
65
|
+
found in your PATH (Try \"exiftool -ver\" on your commandline). |\n| For more
|
|
66
|
+
details see |\n| http://www.sno.phy.queensu.ca/~phil/exiftool/install.html
|
|
67
|
+
\ |\n+-----------------------------------------------------------------------+\n
|
|
68
|
+
\ "
|
|
69
|
+
rdoc_options:
|
|
80
70
|
- --line-numbers
|
|
81
71
|
- --inline-source
|
|
82
72
|
- --title
|
|
83
73
|
- Multi_exiftool
|
|
84
74
|
- --main
|
|
85
75
|
- README
|
|
86
|
-
require_paths:
|
|
76
|
+
require_paths:
|
|
87
77
|
- lib
|
|
88
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
78
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
89
79
|
none: false
|
|
90
|
-
requirements:
|
|
91
|
-
- -
|
|
92
|
-
- !ruby/object:Gem::Version
|
|
93
|
-
segments:
|
|
94
|
-
- 1
|
|
95
|
-
- 9
|
|
96
|
-
- 1
|
|
80
|
+
requirements:
|
|
81
|
+
- - ! '>='
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
97
83
|
version: 1.9.1
|
|
98
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
85
|
none: false
|
|
100
|
-
requirements:
|
|
101
|
-
- -
|
|
102
|
-
- !ruby/object:Gem::Version
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
- 2
|
|
106
|
-
version: "1.2"
|
|
107
|
-
requirements:
|
|
86
|
+
requirements:
|
|
87
|
+
- - ! '>='
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '1.2'
|
|
90
|
+
requirements:
|
|
108
91
|
- exiftool, version 7.65 or higher
|
|
109
92
|
rubyforge_project: multi_exiftool
|
|
110
|
-
rubygems_version: 1.
|
|
93
|
+
rubygems_version: 1.8.6.1
|
|
111
94
|
signing_key:
|
|
112
95
|
specification_version: 3
|
|
113
96
|
summary: This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).
|
|
114
|
-
test_files:
|
|
97
|
+
test_files:
|
|
115
98
|
- test/test_reader.rb
|
|
116
99
|
- test/test_values.rb
|
|
117
100
|
- test/test_values_using_groups.rb
|