uc3-dmp-id 0.1.49 → 0.1.50
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/lib/uc3-dmp-id/updater.rb +8 -0
- data/lib/uc3-dmp-id/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e3c4a8acb59e69dd223f10dab9ce2bcf8e7fa2ad131eed5bd6f04feced6e668
|
|
4
|
+
data.tar.gz: f8ad221d21001a798415ecced5dff904d20c5ca2d1e7021a7ed28a49f496f57f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84157070699350225aac0549b2e5a2879dc3ee95e33aa7e9139124f071109e8a51ea6c7789c68520a52f498dfbf5cee24475cddc5c0b6724decbee60feb38e57
|
|
7
|
+
data.tar.gz: 13e96259e5668dd4ecfcbeebf5b07320b555d4c55db08aae60a3204e847c974f6efcbfb9a4e29747bbc6f647c23ec73775729152b4b17ca2d79b3c491ea2f7da
|
data/lib/uc3-dmp-id/updater.rb
CHANGED
|
@@ -204,6 +204,14 @@ module Uc3DmpId
|
|
|
204
204
|
# The `dmphub_modifications` array will ONLY ever have things the harvester mods know about
|
|
205
205
|
# so just find them and update the status accordingly
|
|
206
206
|
mods = resp.dup
|
|
207
|
+
|
|
208
|
+
puts 'MODIFICATIONS RECORD'
|
|
209
|
+
puts mods
|
|
210
|
+
|
|
211
|
+
puts 'INCOMING RECORD'
|
|
212
|
+
puts json['dmphub_modifications']
|
|
213
|
+
|
|
214
|
+
|
|
207
215
|
json['dmphub_modifications'].each do |entry|
|
|
208
216
|
next if entry.fetch('dmproadmap_related_identifiers', []).empty?
|
|
209
217
|
|
data/lib/uc3-dmp-id/version.rb
CHANGED