ddr-ingesttools 0.6.0 → 0.6.1
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.
- checksums.yaml +4 -4
- data/bin/migrate_ddr_to_rdr.rb +2 -2
- data/lib/ddr/ingesttools/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55f40263acc4c99781050e449db9c6a3745b13d8
|
4
|
+
data.tar.gz: c4210c0744d0c730d4f1f503e4dbabb10e107b61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0cbdeb46006d890cbf4930a5e18bca62dbebc8a8eb9875ac70b6c76cfad3ffa7a4321ba68a4407090fd0edddaf826f70c82e189f37aa81b3e9e4c7bcaee19eb
|
7
|
+
data.tar.gz: de9390e72e983acb2ead8ff7a8f33704b2437f0f2e96f3c66537f0f4f8e00eecc5aeffe42a6a73c8fce2129d6616c9d6ef64a7dd8c00b99cc95a74c570732ad0
|
data/bin/migrate_ddr_to_rdr.rb
CHANGED
@@ -16,7 +16,7 @@ parser = OptionParser.new do |opts|
|
|
16
16
|
opts.banner = 'Usage: migrate_ddr_to_rdr.rb [options]'
|
17
17
|
|
18
18
|
opts.on('-c', '--checksum_file CHECKSUM_FILE', 'File (with full path) to which checksum file should be written') do |v|
|
19
|
-
options[:
|
19
|
+
options[:checksum_file] = v
|
20
20
|
end
|
21
21
|
|
22
22
|
opts.on('-f', '--files FILE_PATH', 'Path to exported files') do |v|
|
@@ -24,7 +24,7 @@ parser = OptionParser.new do |opts|
|
|
24
24
|
end
|
25
25
|
|
26
26
|
opts.on('-m', '--metadata_file METADATA_FILE', 'DDR metadata export file (with full path)') do |v|
|
27
|
-
options[:
|
27
|
+
options[:metadata_file] = v
|
28
28
|
end
|
29
29
|
|
30
30
|
opts.on('-o', '--outfile OUTPUT_FILE', 'File (with full path) to which updated manifest file should be written') do |v|
|