mini_exiftool 2.7.4 → 2.7.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Changelog +4 -0
  3. data/Rakefile +9 -3
  4. data/lib/mini_exiftool.rb +1 -1
  5. metadata +19 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 933d35245176e9533c1afa000400c7cd56b84b2f
4
- data.tar.gz: 7062e30d27bd3cbaeda0a0e3dadbd62006002944
3
+ metadata.gz: ea40303c6a7de75b6cdd50f622b0c6295bb8ae1e
4
+ data.tar.gz: c421222c79260015489790b5c7f4c706228b5f04
5
5
  SHA512:
6
- metadata.gz: 1dce823ca5871e37adb16e62fc5a32b705caca6c3788cee1fbc7050d822a78d7afa1947b378bc012f2a0e7030e918dd1bee0522314545d4da8e9112b01f63d2a
7
- data.tar.gz: a41953e80b3c81b074773a79f6dc48d7455611d7b8223d8268be8ebd635847dc53a7482b280f8255f4fe164988292a846b58733c40747ffe1f1819e1467238b7
6
+ metadata.gz: 3b45a765fc368d5788fdfdeb8569b12440fdb4b9073716ea0d6f302c27cd8cd51e985872aeb4a6485a3d0824f22bf31f32ae345a4dda4d831b5111c6e8f2ebab
7
+ data.tar.gz: 6569763de8d775f67315a8c5b22565bf915ae0dc662d175253cbca84c5e0822d301f3bd98f19616dc8b02486adb211267ea68dbfeafe0012ac66e020f10d0f6a
data/Changelog CHANGED
@@ -1,5 +1,9 @@
1
+ 2.7.5
2
+ - Add gem description and fix typo in summary.
3
+
1
4
  2.7.4
2
5
  - Print messages at $stdout when generating the PStore file with ExifTool tag names.
6
+ Thanks to Joshfindit for the idea.
3
7
 
4
8
  2.7.3
5
9
  - Update docs.
data/Rakefile CHANGED
@@ -10,12 +10,18 @@ Rim.setup do |p|
10
10
  p.version = MiniExiftool::VERSION
11
11
  p.authors = 'Jan Friedrich'
12
12
  p.email = 'janfri26@gmail.com'
13
- p.summary = 'This library is wrapper for the ExifTool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).'
13
+ p.summary = 'This library is a wrapper for the ExifTool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).'
14
+ p.description <<-END
15
+ This library is a wrapper for the ExifTool command-line application
16
+ (http://www.sno.phy.queensu.ca/~phil/exiftool) written by Phil Harvey.
17
+ It provides the full power of ExifTool to Ruby: reading and writing of
18
+ EXIF-data, IPTC-data and XMP-data.
19
+ END
14
20
  p.homepage = 'https://github.com/janfri/mini_exiftool'
15
21
  p.license = 'LGPL-2.1'
16
22
  p.gem_files << 'Tutorial.rdoc'
17
23
  p.gem_files += FileList.new('examples/**')
18
- p.install_message = %q{
24
+ p.install_message = <<-END
19
25
  +-----------------------------------------------------------------------+
20
26
  | Please ensure you have installed exiftool at least version 7.65 |
21
27
  | and it's found in your PATH (Try "exiftool -ver" on your commandline).|
@@ -25,6 +31,6 @@ Rim.setup do |p|
25
31
  | If you need support for Ruby 1.8 or exiftool prior 7.65 install |
26
32
  | mini_exiftool version < 2.0.0. |
27
33
  +-----------------------------------------------------------------------+
28
- }
34
+ END
29
35
  p.test_warning = false
30
36
  end
@@ -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.4'
29
+ VERSION = '2.7.5'
30
30
 
31
31
  # Name of the ExifTool command-line application
32
32
  @@cmd = 'exiftool'
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
4
+ version: 2.7.5
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-06-13 00:00:00.000000000 Z
11
+ date: 2016-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rim
@@ -24,7 +24,11 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '2.9'
27
- description: ''
27
+ description: |
28
+ This library is a wrapper for the ExifTool command-line application
29
+ (http://www.sno.phy.queensu.ca/~phil/exiftool) written by Phil Harvey.
30
+ It provides the full power of ExifTool to Ruby: reading and writing of
31
+ EXIF-data, IPTC-data and XMP-data.
28
32
  email: janfri26@gmail.com
29
33
  executables: []
30
34
  extensions: []
@@ -75,14 +79,16 @@ homepage: https://github.com/janfri/mini_exiftool
75
79
  licenses:
76
80
  - LGPL-2.1
77
81
  metadata: {}
78
- post_install_message: "\n+-----------------------------------------------------------------------+\n|
79
- Please ensure you have installed exiftool at least version 7.65 |\n| and it's
80
- found in your PATH (Try \"exiftool -ver\" on your commandline).|\n| For more details
81
- see |\n| http://www.sno.phy.queensu.ca/~phil/exiftool/install.html
82
- \ |\n| You need also Ruby 1.9 or higher. |\n|
83
- If you need support for Ruby 1.8 or exiftool prior 7.65 install |\n| mini_exiftool
84
- version < 2.0.0. |\n+-----------------------------------------------------------------------+\n
85
- \ "
82
+ post_install_message: |
83
+ +-----------------------------------------------------------------------+
84
+ | Please ensure you have installed exiftool at least version 7.65 |
85
+ | and it's found in your PATH (Try "exiftool -ver" on your commandline).|
86
+ | For more details see |
87
+ | http://www.sno.phy.queensu.ca/~phil/exiftool/install.html |
88
+ | You need also Ruby 1.9 or higher. |
89
+ | If you need support for Ruby 1.8 or exiftool prior 7.65 install |
90
+ | mini_exiftool version < 2.0.0. |
91
+ +-----------------------------------------------------------------------+
86
92
  rdoc_options: []
87
93
  require_paths:
88
94
  - lib
@@ -101,5 +107,6 @@ rubyforge_project:
101
107
  rubygems_version: 2.6.4
102
108
  signing_key:
103
109
  specification_version: 4
104
- summary: This library is wrapper for the ExifTool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).
110
+ summary: This library is a wrapper for the ExifTool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).
105
111
  test_files: []
112
+ has_rdoc: