multi_exiftool 0.18.0 → 0.18.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
  SHA256:
3
- metadata.gz: f5e0da6a6777fec53fcab69c4b0820b6c4ed0de051f52f6954c0b4ed77aed3d3
4
- data.tar.gz: 1f5990491326fd50822a5b53ff0fd7e772e5ee778a870a789baaf9d714b15246
3
+ metadata.gz: c32c0754aa49fcb693d9c9f5b57cc97a8a12beb59cd7b68d58d02b33c86dc124
4
+ data.tar.gz: 67b5fd97eb0a6659e632bcd7f703aaf3ca6b847fc678a0afadf79345870710c3
5
5
  SHA512:
6
- metadata.gz: d0eb9046eaeed06017ce13fce678d00243ffb79c17cc4592b3ad4d41e79ec38e903e09432a9857db79c27e61ac34aa1c45086d9f3b6b09db3b15b72015be2d87
7
- data.tar.gz: faf64b4908f2ed242d32e3d80920628b10a3618c021a643be158d80463f79561c0d0a798ef3eb356ec44ba47384d5bb3976b1b3e0f4b36c8d0dd8fa379590e31
6
+ metadata.gz: 5a238f428504a103a990003e2b10fd15f7d55b37a22f3f857a8bc90b66f0ad683e54d752be78f101f8a9527a9cc1c6b111ed330a8963ff1a2f3a7ecdf0a2971e
7
+ data.tar.gz: 1ff4a6dfe8516e0183476a6d3b526f012d6fb94ca95f3f6a91eefa57039d7c3421fff9561bce59eb3d7d985a3ea389addb44a7ea9b34a2438b875d2fd52888ef
data/Changelog CHANGED
@@ -1,3 +1,6 @@
1
+ 0.18.1
2
+ Fix a bug with large output which causes the hanging when reading data.
3
+
1
4
  0.18.0
2
5
  Adapt handling of errors. Only lines in STDERR which starts with "Error:" or
3
6
  "Warning:" are now interpreted as error messages. Therefore ExifTool 11.10 is
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License
2
2
 
3
- Copyright (c) 2009-2019 Jan Friedrich
3
+ Copyright (c) 2009-2012, 2014-2020, 2022-2024 Jan Friedrich
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -69,8 +69,8 @@ module MultiExiftool
69
69
  end
70
70
 
71
71
  def parse_results
72
- parse_errors
73
72
  stdout = @stdout.read
73
+ parse_errors
74
74
  json = JSON.parse(stdout)
75
75
  json.map {|values| Values.new(values)}
76
76
  rescue JSON::ParserError
@@ -8,7 +8,7 @@ require_relative 'multi_exiftool/batch'
8
8
 
9
9
  module MultiExiftool
10
10
 
11
- VERSION = '0.18.0'
11
+ VERSION = '0.18.1'
12
12
 
13
13
  @exiftool_command = 'exiftool'
14
14
 
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: multi_exiftool 0.18.0 ruby lib
2
+ # stub: multi_exiftool 0.18.1 ruby lib
3
3
  #
4
4
  # This file is automatically generated by rim.
5
5
  # PLEASE DO NOT EDIT IT DIRECTLY!
@@ -7,12 +7,12 @@
7
7
 
8
8
  Gem::Specification.new do |s|
9
9
  s.name = "multi_exiftool"
10
- s.version = "0.18.0"
10
+ s.version = "0.18.1"
11
11
 
12
12
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
13
13
  s.require_paths = ["lib"]
14
14
  s.authors = ["Jan Friedrich"]
15
- s.date = "2024-04-04"
15
+ s.date = "2024-05-23"
16
16
  s.description = "This library is a wrapper for the ExifTool command-line application (https://exiftool.org) 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."
17
17
  s.email = "janfri26@gmail.com"
18
18
  s.files = ["./.aspell.pws", "Changelog", "Gemfile", "LICENSE", "README.md", "Rakefile", "lib/multi_exiftool", "lib/multi_exiftool.rb", "lib/multi_exiftool/batch.rb", "lib/multi_exiftool/executable.rb", "lib/multi_exiftool/reader.rb", "lib/multi_exiftool/values.rb", "lib/multi_exiftool/writer.rb", "multi_exiftool.gemspec", "regtest/read_all_tags.rb", "regtest/read_all_tags.yml", "regtest/test.jpg", "test/data", "test/data/a.jpg", "test/data/b.jpg", "test/data/c.jpg", "test/data/example.config", "test/helper.rb", "test/test_batch.rb", "test/test_executable.rb", "test/test_exiftool_stuff.rb", "test/test_functional_api.rb", "test/test_reader.rb", "test/test_values.rb", "test/test_values_using_groups.rb", "test/test_writer.rb", "test/test_writer_groups.rb"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multi_exiftool
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.18.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Friedrich
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2024-04-04 00:00:00.000000000 Z
10
+ date: 2024-05-23 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rake