libis-format 2.0.3 → 2.0.4

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: 4b7038f7206f0eeef883d0571657efca3999970d64abb78c2507bdc3a92a0c95
4
- data.tar.gz: 6225fc365aba08fb6307997ce0b2615c4ea1f4c20ae9cb3765ebecc8e7ea5211
3
+ metadata.gz: 43d209bde1a85973e528730bb3ec4c9cffc58db02f916936fa2144d4e91b81f7
4
+ data.tar.gz: 04315d80c7e20b6302f9d6d10906f4ec7d5b6046a47902fbeff95ec97bf7732a
5
5
  SHA512:
6
- metadata.gz: dcce329e2ad5a6e3991e3d7eca4a35d6dc19b96d9cd83ff109bb744d7c51238ed66a9484000b260b007778df42a00ff1fc4077d387752d72fec25bebe221ed31
7
- data.tar.gz: 77328b76c2703a8611638bbfbf0b9bf19996f694a04389191254c896471481ffb4ed87e57de7a000dfc67d106a281277e3226f85cb93ee08d44df4b7c526f383
6
+ metadata.gz: d581e3ac51fc290ba57e27d2bf6bfe5dcfa8f269a8dbdfa656954bff2af7efd8d963177ec1cb309db481bd7b84603df20e8b34bb1800f7c88d93e91e31722532
7
+ data.tar.gz: 867208ce1766cb4bdec0efc648c7b5a1e1dd9883ffd5818f82324ea3a783b21e50cb81fafdbc04bad1c1da75adb75503c63d9be3936baeeac436a5a92ac9a791
File without changes
File without changes
@@ -1,5 +1,5 @@
1
1
  module Libis
2
2
  module Format
3
- VERSION = '2.0.3'
3
+ VERSION = '2.0.4'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libis-format
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kris Dekeyser
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-25 00:00:00.000000000 Z
11
+ date: 2021-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -169,11 +169,10 @@ description: Collection of tools and classes that help to identify formats of bi
169
169
  email:
170
170
  - kris.dekeyser@libis.be
171
171
  executables:
172
- - droid
173
- - fido
172
+ - droid_tool
173
+ - fido_tool
174
174
  - formatinfo
175
175
  - libis_format
176
- - pdf_copy
177
176
  extensions: []
178
177
  extra_rdoc_files: []
179
178
  files:
@@ -188,11 +187,10 @@ files:
188
187
  - base/Dockerfile.alpine
189
188
  - base/Dockerfile.rvm
190
189
  - base/rework_path
191
- - bin/droid
192
- - bin/fido
190
+ - bin/droid_tool
191
+ - bin/fido_tool
193
192
  - bin/formatinfo
194
193
  - bin/libis_format
195
- - bin/pdf_copy
196
194
  - data/ISOcoated_v2_eci.icc
197
195
  - data/PDFA_def.ps
198
196
  - data/ead.xsd
data/bin/pdf_copy DELETED
@@ -1,13 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'libis-format'
4
- require 'libis-tools'
5
-
6
- ::Libis::Tools::Config.logger.level = :WARN
7
-
8
- source = ARGV.shift
9
- target = ARGV.shift
10
- options = ARGV
11
-
12
- ::Libis::Format::Tool::PdfCopy.run source, target, options
13
-