mini_exiftool 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (7) hide show
  1. data/Changelog +27 -18
  2. data/Manifest +28 -0
  3. data/README +1 -1
  4. data/Rakefile +16 -230
  5. data/TODO +4 -0
  6. data/mini_exiftool.gemspec +37 -0
  7. metadata +35 -22
data/Changelog CHANGED
@@ -1,23 +1,32 @@
1
- Version 1.2.0
1
+ v1.2.1
2
+ - Switching to echoe.
3
+ - Update e-mail address.
4
+
5
+ v1.2.0
2
6
  - Fixing time zone handling.
3
7
  Thanks to ccoenen for the hint.
4
- Version 1.1.0
8
+
9
+ v1.1.0
5
10
  - Escaping filenames in shell commands
6
11
  Thanks to Michael Hoy for the hint and implementing a patch which was
7
12
  the base for this fix.
8
- Version 1.0.2
13
+
14
+ v1.0.2
9
15
  - Fixing warings
10
16
  Thanks to Peter-Hinrich Krogmann for the hint.
11
- Version 1.0.1
17
+
18
+ v1.0.1
12
19
  - Fixing bug [#22726]
13
20
  Making MiniExiftool::Error public.
14
21
  Thanks to Mathias Stjernstrom for sending a patch.
15
- Version 1.0.0
22
+
23
+ v1.0.0
16
24
  - Be aware changing in the interface:
17
25
  - List tags (e.g. Keywords, SupplementalCategories) are now handled as
18
26
  arrays.
19
27
  - Tag SubjectLocation is not longer an array value but a string value!
20
- Version 0.7.0
28
+
29
+ v0.7.0
21
30
  - Changing composite behaviour: Composite tags are now included as standard!
22
31
  - New method MiniExiftool.opts which returns a hash of the standard
23
32
  options used for MiniExiftool.new
@@ -25,7 +34,7 @@ Version 0.7.0
25
34
  of the exiftool command-line application (see online documentation for it)
26
35
  Thanks to Henning Kulander for the causing of this change.
27
36
 
28
- Version 0.6.0
37
+ v0.6.0
29
38
  - New methods for serialization:
30
39
  - MiniExiftool.from_hash
31
40
  - MiniExiftool.from_yaml
@@ -35,20 +44,20 @@ Version 0.6.0
35
44
  - Refactoring of tests
36
45
  - Small documetation update
37
46
 
38
- Version 0.5.1
47
+ v0.5.1
39
48
  - Warning "parenthesize argument(s) for future version" removed
40
49
  Thanks to Greg from knobby.ws
41
50
 
42
- Version 0.5.0
51
+ v0.5.0
43
52
  - New option :timestamps to create DateTime objects instead of Time objects
44
53
  for timestamps (Fixing bug #16328)
45
54
  - Invalid values of timestamps (i.e. 0000:00:00 00:00:00) are now mapped
46
55
  to false
47
56
 
48
- Version 0.4.1
57
+ v0.4.1
49
58
  - Compatibility for Ruby 1.9
50
59
 
51
- Version 0.4.0
60
+ v0.4.0
52
61
  - MiniExiftool::Error inherits now from StandardError
53
62
  - Alternative installation via setup.rb
54
63
  - Bugfix
@@ -58,10 +67,10 @@ Version 0.4.0
58
67
  - Interna: Original tag names (all and writable) are now saved via pstore in
59
68
  a file for better performance
60
69
 
61
- Version 0.3.1
70
+ v0.3.1
62
71
  - Typos fixed
63
72
 
64
- Version 0.3.0
73
+ v0.3.0
65
74
  - Documentation completed and a Mini Tutorial added
66
75
  - Interface changes:
67
76
  - Test if a value for a tag can be saved is now done in
@@ -76,27 +85,27 @@ Version 0.3.0
76
85
  - :composite => read also composite tags
77
86
  - Tests added
78
87
 
79
- Version 0.2.0
88
+ v0.2.0
80
89
  - Better error handling (i.e. error messages)
81
90
  - Checking if the exiftool command can be executed at loading the lib
82
91
  - New class method exiftool_version
83
92
  - Added tests
84
93
  - Documentation completed
85
94
 
86
- Version 0.1.2
95
+ v0.1.2
87
96
  - Bugfix for Windows (Tempfile)
88
97
  Thanks to Jérome Soika for testing
89
98
  - Regexes optimized (a little bit)
90
99
  - New class-method MiniExiftool.writable_tags
91
100
 
92
- Version 0.1.1
101
+ v0.1.1
93
102
  - Fixing bug [#8073]
94
103
  Handling the '-' in tag Self-timer
95
104
  Thanks to Eric Young
96
105
 
97
- Version 0.1.0
106
+ v0.1.0
98
107
  - New method "revert"
99
108
  - More tests
100
109
 
101
- Version 0.0.1
110
+ v0.0.1
102
111
  - Initial release
data/Manifest ADDED
@@ -0,0 +1,28 @@
1
+ COPYING
2
+ Changelog
3
+ Manifest
4
+ README
5
+ Rakefile
6
+ TODO
7
+ Tutorial
8
+ examples/external_photo.rb
9
+ examples/print_portraits.rb
10
+ examples/shift_time.rb
11
+ lib/mini_exiftool.rb
12
+ setup.rb
13
+ test/data/Canon.jpg
14
+ test/data/INFORMATION
15
+ test/data/test 36"Bench.jpg
16
+ test/data/test.jpg
17
+ test/data/test_special_dates.jpg
18
+ test/helpers_for_test.rb
19
+ test/test_class_methods.rb
20
+ test/test_composite.rb
21
+ test/test_dumping.rb
22
+ test/test_escape_filename.rb
23
+ test/test_read.rb
24
+ test/test_read_numerical.rb
25
+ test/test_save.rb
26
+ test/test_special.rb
27
+ test/test_special_dates.rb
28
+ test/test_write.rb
data/README CHANGED
@@ -30,7 +30,7 @@ http://gitorious.org/projects/mini_exiftool
30
30
  feel free to contribute!
31
31
 
32
32
  == Author
33
- Jan Friedrich <janfri DOT rubyforge AT gmail DOT com>
33
+ Jan Friedrich <janfri26 AT gmail DOT com>
34
34
 
35
35
  == Copyright / License
36
36
  Copyright (c) 2007-2011 by Jan Friedrich
data/Rakefile CHANGED
@@ -1,231 +1,17 @@
1
- # Rakefile
2
- require "rake/testtask"
3
- require "rake/clean"
4
- require "rake/rdoctask"
5
- require "rake/gempackagetask"
6
- #---
7
- # The name of your project
8
- PROJECT = "MiniExiftool"
9
-
10
- # Your name, used in packaging.
11
- MY_NAME = "Jan Friedrich"
12
-
13
- # Your email address, used in packaging.
14
- MY_EMAIL = "janfri26@gmail.com"
15
-
16
- # Short summary of your project, used in packaging.
17
- PROJECT_SUMMARY = 'A library for nice OO access to the Exiftool command-line application written by Phil Harvey.'
18
-
19
- # The project's package name (as opposed to its display name). Used for
20
- # RubyForge connectivity and packaging.
21
- UNIX_NAME = "mini_exiftool"
22
- UNIX_NAME_RUBYFORGE = "miniexiftool"
23
-
24
- # Your RubyForge user name.
25
- RUBYFORGE_USER = ENV["RUBYFORGE_USER"] || "janfri"
26
-
27
- # Directory on RubyForge where your website's files should be uploaded.
28
- WEBSITE_DIR = "doc"
29
-
30
- # Output directory for the rdoc html files.
31
- # If you don't have a custom homepage, and want to use the RDoc
32
- # index.html as homepage, just set it to WEBSITE_DIR.
33
- RDOC_HTML_DIR = "#{WEBSITE_DIR}"
34
- #---
35
- # Variable settings for extension support.
36
- EXT_DIR = "ext"
37
- HAVE_EXT = File.directory?(EXT_DIR)
38
- EXTCONF_FILES = FileList["#{EXT_DIR}/**/extconf.rb"]
39
- EXT_SOURCES = FileList["#{EXT_DIR}/**/*.{c,h}"]
40
- # Eventually add other files from EXT_DIR, like "MANIFEST"
41
- EXT_DIST_FILES = EXT_SOURCES + EXTCONF_FILES
42
- #---
43
- REQUIRE_PATHS = ['lib', 'test']
44
- REQUIRE_PATHS << EXT_DIR if HAVE_EXT
45
- REQUIRE_PATHS.reverse_each do |p|
46
- $LOAD_PATH.unshift p
47
- end
48
- # This library file defines the MyProject::VERSION constant.
49
- require "#{UNIX_NAME}"
50
- PROJECT_VERSION = eval("#{PROJECT}::VERSION") # e.g. "1.0.2"
51
- #---
52
- # Clobber object files and Makefiles generated by extconf.rb.
53
- CLOBBER.include("#{EXT_DIR}/**/*.{so,dll,o}", "#{EXT_DIR}/**/Makefile")
54
- # Clobber .config generated by setup.rb.
55
- CLOBBER.include(".config")
56
- #---
57
- # Options common to RDocTask AND Gem::Specification.
58
- # The --main argument specifies which file appears on the index.html page
59
- GENERAL_RDOC_OPTS = {
60
- "--title" => "#{PROJECT} API documentation",
61
- "--main" => "README"
62
- }
63
-
64
- # Additional RDoc formatted files, besides the Ruby source files.
65
- RDOC_FILES = FileList["README", 'Tutorial']
66
- # Remove the following line if you don't want to extract RDoc from
67
- # the extension C sources.
68
- RDOC_FILES.include(EXT_SOURCES)
69
-
70
- # Ruby library code.
71
- LIB_FILES = FileList["lib/**/*.rb"]
72
-
73
- # Filelist with Test::Unit test cases.
74
- TEST_FILES = FileList["test/**/test_*.rb"]
75
-
76
- # Executable scripts, all non-garbage files under bin/.
77
- BIN_FILES = FileList["bin/*"]
78
-
79
- # This filelist is used to create source packages.
80
- # Include all Ruby and RDoc files.
81
- DIST_FILES = FileList["**/*.rb", "**/*.rdoc"]
82
- DIST_FILES.include("Rakefile", "COPYING", 'Changelog')
83
- DIST_FILES.include(BIN_FILES)
84
- DIST_FILES.include("data/**/*", "test/data/**/*")
85
- DIST_FILES.include("#{WEBSITE_DIR}/**/*.{html,css}", "man/*.[0-9]")
86
- # Don't package files which are autogenerated by RDocTask
87
- DIST_FILES.exclude(/^(\.\/)?#{RDOC_HTML_DIR}(\/|$)/)
88
- # Include extension source files.
89
- DIST_FILES.include(EXT_DIST_FILES)
90
- # Don't package temporary files, perhaps created by tests.
91
- DIST_FILES.exclude("**/temp_*", "**/*.tmp")
92
- # Don't get into recursion...
93
- DIST_FILES.exclude(/^(\.\/)?pkg(\/|$)/)
94
- #---
95
- # Run the tests if rake is invoked without arguments.
96
- task "default" => ["test"]
97
-
98
- test_task_name = HAVE_EXT ? "run-tests" : "test"
99
- Rake::TestTask.new(test_task_name) do |t|
100
- t.test_files = TEST_FILES
101
- t.libs = REQUIRE_PATHS
102
- end
103
- #---
104
- # Set an environment variable with any configuration options you want to
105
- # be passed through to "setup.rb config".
106
- CONFIG_OPTS = ENV["CONFIG"]
107
- if HAVE_EXT
108
- file_create ".config" do
109
- ruby "setup.rb config #{CONFIG_OPTS}"
110
- end
111
-
112
- desc "Configure and make extension. " +
113
- "The CONFIG variable is passed to `setup.rb config'"
114
- task "make-ext" => ".config" do
115
- # The -q option suppresses messages from setup.rb.
116
- ruby "setup.rb -q setup"
117
- end
118
-
119
- desc "Run tests after making the extension."
120
- task "test" do
121
- Rake::Task["make-ext"].invoke
122
- Rake::Task["run-tests"].invoke
123
- end
124
- end
125
- #---
126
- # The "rdoc" task generates API documentation.
127
- Rake::RDocTask.new("rdoc") do |t|
128
- t.rdoc_files = RDOC_FILES + LIB_FILES
129
- t.title = GENERAL_RDOC_OPTS["--title"]
130
- t.main = GENERAL_RDOC_OPTS["--main"]
131
- t.rdoc_dir = RDOC_HTML_DIR
132
- end
133
- #---
134
- GEM_SPEC = Gem::Specification.new do |s|
135
- s.name = UNIX_NAME
136
- s.version = PROJECT_VERSION
137
- s.summary = PROJECT_SUMMARY
138
- s.rubyforge_project = UNIX_NAME_RUBYFORGE
139
- s.homepage = "http://#{UNIX_NAME_RUBYFORGE}.rubyforge.org/"
140
- s.author = MY_NAME
141
- s.email = MY_EMAIL
142
- s.files = DIST_FILES
143
- s.test_files = TEST_FILES
144
- s.executables = BIN_FILES.map { |fn| File.basename(fn) }
145
- s.has_rdoc = true
146
- s.extra_rdoc_files = RDOC_FILES
147
- s.rdoc_options = GENERAL_RDOC_OPTS.to_a.flatten
148
- if HAVE_EXT
149
- s.extensions = EXTCONF_FILES
150
- s.require_paths << EXT_DIR
151
- end
152
- end
153
-
154
- # Now we can generate the package-related tasks.
155
- Rake::GemPackageTask.new(GEM_SPEC) do |pkg|
156
- pkg.need_zip = true
157
- pkg.need_tar = true
158
- end
159
- #---
160
- desc "Upload website to RubyForge. " +
161
- "scp will prompt for your RubyForge password."
162
- task "publish-website" => ["rdoc"] do
163
- rubyforge_path = "/var/www/gforge-projects/#{UNIX_NAME_RUBYFORGE}/"
164
- sh "scp -r #{WEBSITE_DIR}/* " +
165
- "#{RUBYFORGE_USER}@rubyforge.org:#{rubyforge_path}",
166
- :verbose => true
167
- end
168
- #---
169
- task "rubyforge-setup" do
170
- unless File.exist?(File.join(ENV["HOME"], ".rubyforge"))
171
- puts "rubyforge will ask you to edit its config.yml now."
172
- puts "Please set the `username' and `password' entries"
173
- puts "to your RubyForge username and RubyForge password!"
174
- puts "Press ENTER to continue."
175
- $stdin.gets
176
- sh "rubyforge setup", :verbose => true
177
- end
178
- end
179
-
180
- task "rubyforge-login" => ["rubyforge-setup"] do
181
- # Note: We assume that username and password were set in
182
- # rubyforge's config.yml.
183
- sh "rubyforge login", :verbose => true
184
- end
185
-
186
- task "publish-packages" => ["package", "rubyforge-login"] do
187
- # Upload packages under pkg/ to RubyForge
188
- # This task makes some assumptions:
189
- # * You have already created a package on the "Files" tab on the
190
- # RubyForge project page. See pkg_name variable below.
191
- # * You made entries under package_ids and group_ids for this
192
- # project in rubyforge's config.yml. If not, eventually read
193
- # "rubyforge --help" and then run "rubyforge setup".
194
- pkg_name = ENV["PKG_NAME"] || UNIX_NAME
195
- cmd = "rubyforge add_release miniexiftool mini_exiftool " +
196
- "#{PROJECT_VERSION} #{UNIX_NAME}-#{PROJECT_VERSION}"
197
- cd "pkg" do
198
- sh(cmd + ".gem", :verbose => true)
199
- sh(cmd + ".tgz", :verbose => true)
200
- sh(cmd + ".zip", :verbose => true)
201
- end
202
- end
203
- #---
204
- # The "prepare-release" task makes sure your tests run, and then generates
205
- # files for a new release.
206
- desc "Run tests, generate RDoc and create packages."
207
- task "prepare-release" => ["clobber"] do
208
- puts "Preparing release of #{PROJECT} version #{PROJECT_VERSION}"
209
- Rake::Task["test"].invoke
210
- Rake::Task["rdoc"].invoke
211
- Rake::Task["package"].invoke
212
- end
213
-
214
- # The "publish" task is the overarching task for the whole project. It
215
- # builds a release and then publishes it to RubyForge.
216
- desc "Publish new release of #{PROJECT}"
217
- task "publish" => ["prepare-release"] do
218
- puts "Uploading documentation..."
219
- Rake::Task["publish-website"].invoke
220
- puts "Checking for rubyforge command..."
221
- `rubyforge --help`
222
- if $? == 0
223
- puts "Uploading packages..."
224
- Rake::Task["publish-packages"].invoke
225
- puts "Release done!"
226
- else
227
- puts "Can't invoke rubyforge command."
228
- puts "Either install rubyforge with 'gem install rubyforge'"
229
- puts "and retry or upload the package files manually!"
230
- end
1
+ require 'rubygems'
2
+ require 'echoe'
3
+
4
+ Echoe.new('mini_exiftool') do |p|
5
+ p.author = 'Jan Friedrich'
6
+ p.email = 'janfri26@gmail.com'
7
+ p.summary = 'This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).'
8
+ p.url = 'http://gitorious.org/mini_exiftool'
9
+ p.rdoc_files = %w(README Tutorial lib/*.rb)
10
+ p.install_message = %q{
11
+ +-----------------------------------------------------------------------+
12
+ | Please ensure you have installed exiftool and it's found in your PATH |
13
+ | (Try "exiftool -ver" on your commandline). For more details see |
14
+ | http://www.sno.phy.queensu.ca/~phil/exiftool/install.html |
15
+ +-----------------------------------------------------------------------+
16
+ }
231
17
  end
data/TODO ADDED
@@ -0,0 +1,4 @@
1
+ * Tests for managing tags with pstore
2
+ * Update Tutorial
3
+ * Describing the options :composite and :timestamps
4
+ * Looking for a solution to dump and restore DateTime instances with YAML
@@ -0,0 +1,37 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{mini_exiftool}
5
+ s.version = "1.2.1"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Jan Friedrich"]
9
+ s.date = %q{2011-03-26}
10
+ s.description = %q{This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).}
11
+ s.email = %q{janfri26@gmail.com}
12
+ s.extra_rdoc_files = ["README", "Tutorial", "lib/mini_exiftool.rb"]
13
+ s.files = ["COPYING", "Changelog", "Manifest", "README", "Rakefile", "TODO", "Tutorial", "examples/external_photo.rb", "examples/print_portraits.rb", "examples/shift_time.rb", "lib/mini_exiftool.rb", "setup.rb", "test/data/Canon.jpg", "test/data/INFORMATION", "test/data/test 36\"Bench.jpg", "test/data/test.jpg", "test/data/test_special_dates.jpg", "test/helpers_for_test.rb", "test/test_class_methods.rb", "test/test_composite.rb", "test/test_dumping.rb", "test/test_escape_filename.rb", "test/test_read.rb", "test/test_read_numerical.rb", "test/test_save.rb", "test/test_special.rb", "test/test_special_dates.rb", "test/test_write.rb", "mini_exiftool.gemspec"]
14
+ s.homepage = %q{http://gitorious.org/mini_exiftool}
15
+ s.post_install_message = %q{
16
+ +-----------------------------------------------------------------------+
17
+ | Please ensure you have installed exiftool and it's found in your PATH |
18
+ | (Try "exiftool -ver" on your commandline). For more details see |
19
+ | http://www.sno.phy.queensu.ca/~phil/exiftool/install.html |
20
+ +-----------------------------------------------------------------------+
21
+ }
22
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Mini_exiftool", "--main", "README"]
23
+ s.require_paths = ["lib"]
24
+ s.rubyforge_project = %q{mini_exiftool}
25
+ s.rubygems_version = %q{1.6.1}
26
+ s.summary = %q{This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).}
27
+ s.test_files = ["test/helpers_for_test.rb", "test/test_class_methods.rb", "test/test_composite.rb", "test/test_dumping.rb", "test/test_escape_filename.rb", "test/test_read.rb", "test/test_read_numerical.rb", "test/test_save.rb", "test/test_special.rb", "test/test_special_dates.rb", "test/test_write.rb"]
28
+
29
+ if s.respond_to? :specification_version then
30
+ s.specification_version = 3
31
+
32
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
33
+ else
34
+ end
35
+ else
36
+ end
37
+ end
metadata CHANGED
@@ -1,7 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mini_exiftool
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ prerelease:
5
+ version: 1.2.1
5
6
  platform: ruby
6
7
  authors:
7
8
  - Jan Friedrich
@@ -9,11 +10,11 @@ autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
12
 
12
- date: 2011-03-14 00:00:00 +01:00
13
+ date: 2011-03-26 00:00:00 +01:00
13
14
  default_executable:
14
15
  dependencies: []
15
16
 
16
- description:
17
+ description: This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).
17
18
  email: janfri26@gmail.com
18
19
  executables: []
19
20
 
@@ -22,12 +23,25 @@ extensions: []
22
23
  extra_rdoc_files:
23
24
  - README
24
25
  - Tutorial
26
+ - lib/mini_exiftool.rb
25
27
  files:
28
+ - COPYING
29
+ - Changelog
30
+ - Manifest
31
+ - README
32
+ - Rakefile
33
+ - TODO
34
+ - Tutorial
26
35
  - examples/external_photo.rb
27
36
  - examples/print_portraits.rb
28
37
  - examples/shift_time.rb
29
38
  - lib/mini_exiftool.rb
30
39
  - setup.rb
40
+ - test/data/Canon.jpg
41
+ - test/data/INFORMATION
42
+ - test/data/test 36"Bench.jpg
43
+ - test/data/test.jpg
44
+ - test/data/test_special_dates.jpg
31
45
  - test/helpers_for_test.rb
32
46
  - test/test_class_methods.rb
33
47
  - test/test_composite.rb
@@ -39,48 +53,47 @@ files:
39
53
  - test/test_special.rb
40
54
  - test/test_special_dates.rb
41
55
  - test/test_write.rb
42
- - Rakefile
43
- - COPYING
44
- - Changelog
45
- - test/data/Canon.jpg
46
- - test/data/INFORMATION
47
- - test/data/test 36"Bench.jpg
48
- - test/data/test.jpg
49
- - test/data/test_special_dates.jpg
50
- - README
51
- - Tutorial
56
+ - mini_exiftool.gemspec
52
57
  has_rdoc: true
53
- homepage: http://miniexiftool.rubyforge.org/
58
+ homepage: http://gitorious.org/mini_exiftool
54
59
  licenses: []
55
60
 
56
- post_install_message:
61
+ post_install_message: "\n\
62
+ +-----------------------------------------------------------------------+\n\
63
+ | Please ensure you have installed exiftool and it's found in your PATH |\n\
64
+ | (Try \"exiftool -ver\" on your commandline). For more details see |\n\
65
+ | http://www.sno.phy.queensu.ca/~phil/exiftool/install.html |\n\
66
+ +-----------------------------------------------------------------------+\n "
57
67
  rdoc_options:
68
+ - --line-numbers
69
+ - --inline-source
58
70
  - --title
59
- - MiniExiftool API documentation
71
+ - Mini_exiftool
60
72
  - --main
61
73
  - README
62
74
  require_paths:
63
75
  - lib
64
76
  required_ruby_version: !ruby/object:Gem::Requirement
77
+ none: false
65
78
  requirements:
66
79
  - - ">="
67
80
  - !ruby/object:Gem::Version
68
81
  version: "0"
69
- version:
70
82
  required_rubygems_version: !ruby/object:Gem::Requirement
83
+ none: false
71
84
  requirements:
72
85
  - - ">="
73
86
  - !ruby/object:Gem::Version
74
- version: "0"
75
- version:
87
+ version: "1.2"
76
88
  requirements: []
77
89
 
78
- rubyforge_project: miniexiftool
79
- rubygems_version: 1.3.5
90
+ rubyforge_project: mini_exiftool
91
+ rubygems_version: 1.6.1
80
92
  signing_key:
81
93
  specification_version: 3
82
- summary: A library for nice OO access to the Exiftool command-line application written by Phil Harvey.
94
+ summary: This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).
83
95
  test_files:
96
+ - test/helpers_for_test.rb
84
97
  - test/test_class_methods.rb
85
98
  - test/test_composite.rb
86
99
  - test/test_dumping.rb