uc3-dmp-id 0.1.9 → 0.1.11

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: 8c486be80d903bf0a84eb05a414d4654bc4e89e54486ee8daee6a451c18c4fd5
4
- data.tar.gz: f7fad411d4c5118dacd0e40d169de08465e97bddeb0a7985a2c320a95004eccf
3
+ metadata.gz: 61f1c9dd64fdec4ec98c5e8a703bba452ba7b17ede2e477d86523fab1c99a94d
4
+ data.tar.gz: 74fefb026abdfed228bad9b4a5c37847bb46c083e125727e0a6ed37f886d4ae2
5
5
  SHA512:
6
- metadata.gz: 317feb916c8d16e49b34b560d13f553f46969dfdec67bebf55a2a8afd98b5a59668f5b7f7ce0cb25a1a05c9cd11539e3af0aecc29ee3fb7396f4f869c5eb255e
7
- data.tar.gz: 3cd7d6ae9a8485b1ded6782db3e2b2ba01fc2f7afdc9cf8414200f9827084e42567418686fb4d153b14188971cb86ad41d0876cceea1ec1606c19d78e5e53576
6
+ metadata.gz: 644e193728347314563daeb6874c86128f434e29b3f9ceb160b256c4e98a3fa26f37da90f5815afde631e15e6f2898ec268aca4e28f5b15ee0efa969cd32bc34
7
+ data.tar.gz: eb046b292e018c428a4d0a332f92f9e96e7a8bc4158b163c0ec657771646bfe3368e325c3442802612fb2df19f66193ad92779cec57d5211c7a6d0ccee2457e3
@@ -3,6 +3,8 @@
3
3
  require 'bibtex'
4
4
  require 'securerandom'
5
5
 
6
+ require 'uc3-dmp-citation'
7
+
6
8
  module Uc3DmpId
7
9
  class AugmenterError < StandardError; end
8
10
 
@@ -89,9 +91,10 @@ module Uc3DmpId
89
91
  }
90
92
  work_type = work.fetch('type', 'Text')&.downcase&.strip
91
93
  ret[:work_type] = work_type == 'text' ? type : work_type
94
+ @logger&.debug(message: "Assessing Work: #{work['id']} (pre citation)", details: ret)
92
95
  return JSON.parse(ret.to_json) if work['bibtex'].nil?
93
96
 
94
- ret[:citation] = Uc3DmpCitation::Citer.bibtex_to_citation(bibtex_as_string: work['bibtex'])
97
+ ret[:citation] = Uc3DmpCitation::Citer.bibtex_to_citation(uri: work['id'], bibtex_as_string: work['bibtex'])
95
98
  JSON.parse(ret.to_json)
96
99
  end
97
100
  # rubocop:enable Metrics/AbcSize
@@ -123,6 +126,7 @@ module Uc3DmpId
123
126
  }
124
127
  }
125
128
  funder_id = funding['funderIdentifier']
129
+ @logger&.debug(message: "Assessing Work: #{work['id']} (pre funder_id)", details: ret)
126
130
  return JSON.parse(ret.to_json) if funder_id.nil?
127
131
 
128
132
  ret[:funder_id] = {
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uc3DmpId
4
- VERSION = '0.1.9'
4
+ VERSION = '0.1.11'
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.1.9
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Riley