uc3-dmp-id 0.0.83 → 0.0.84

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a77779d6dd23f1c3d3cb8271e4623f584590fba3a86f233be7cb2e421cdc5320
4
- data.tar.gz: 8d43e6f5e5fc7c1612133c4a2d8f95dc7d6005bab3aca577cc1373fcf33af1fb
3
+ metadata.gz: 7f2e3b8a5707e78a6d60993c8abc1605b5562ec1e2d0979b5d2ae31fff86c410
4
+ data.tar.gz: ac67878bb4ab3ba29733cc45b0f96b047bd81ac55f15a1b5a642648e017f1c50
5
5
  SHA512:
6
- metadata.gz: 18c8561f3dec28a96bdc0ea321b819d6b67f72c755a1828476adad82444cba992ffd928191e9161e7b9c1ae1f1b1b71d353e3c05548f75fcf6dcc951941078e8
7
- data.tar.gz: 1eb10265cc9fa080aa0f81550446ef22f5fd3f4907c1c0ffee82a9400d74717c5ed3603218b1bf76eccab2c1d0ff56cc51a11c487096c1676af07f102225b571
6
+ metadata.gz: 11d4c6faf29896ab3f76984bb90acfa00ae399cfcd5f97ac2272d2ef475345ec3453422d67f0cfc6f8c80bc39fb5cc41d1e38ba7c7196da809c21837f9ff2131
7
+ data.tar.gz: 30dba39ba29e5c9518e208cbfd0afec2ac7fbfc81ccb0d6c2868baf679a21ee34a9dd37a57d589230db02f073705a7ddcb28c2ecc52333d9524e9d2aadd4c624
@@ -14,11 +14,6 @@ module Uc3DmpId
14
14
 
15
15
  dmp = Helper.parse_json(json: json)
16
16
  p_key = Helper.append_pk_prefix(p_key: p_key)
17
- errs = _updateable?(provenance: provenance, p_key: p_key, json: dmp)
18
-
19
- puts "Updateable? #{errs}"
20
-
21
- raise UpdaterError, errs if errs.is_a?(Array) && errs.any?
22
17
 
23
18
  # Add the DMPHub specific attributes
24
19
  annotated = Helper.annotate_dmp(provenance: provenance, json: dmp['dmp'], p_key: p_key)
@@ -29,6 +24,8 @@ puts annotated
29
24
  # fetch the existing latest version of the DMP ID
30
25
  client = Uc3DmpDynamo::Client.new(debug: debug)
31
26
  existing = Finder.by_pk(p_key: p_key, client: client, debug: debug)
27
+ errs = _updateable?(provenance: provenance, p_key: p_key, json: existing)
28
+ raise UpdaterError, errs if errs.is_a?(Array) && errs.any?
32
29
  # Don't continue if nothing has changed!
33
30
  raise UpdaterError, MSG_NO_CHANGE if Helper.eql?(dmp_a: existing, dmp_b: annotated)
34
31
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uc3DmpId
4
- VERSION = '0.0.83'
4
+ VERSION = '0.0.84'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uc3-dmp-id
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.83
4
+ version: 0.0.84
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Riley