uc3-dmp-citation 0.0.3 → 0.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: 68d3163d0ad27c7912aac4c6cd55b1ac698a30eb5d6da8596ad456b3895878eb
4
- data.tar.gz: 91b1daad359992246dffcedc8d05c061a0251df0893f49d2b3f35c061ec044d3
3
+ metadata.gz: 51cc64bd3a8575a4fb04a20d82a1fd6386e4b35ce295267c0e565b709600c071
4
+ data.tar.gz: 1f9620c4964370b74bf04646531006e38c3a17fe5487bd7a1ec2e8de7231f830
5
5
  SHA512:
6
- metadata.gz: 5db74525a5425672a53c2b40091c93a98bd675fd28639ce8bb8b471c40018155fe670a5ddef0d82a658d672a8f581db33f0375e06308a8564561de92daa212a0
7
- data.tar.gz: 34c7659bae12077d1691584a5d579c146b9632f48ecb691bd23dc389ac1eddb4ead4559c5cec807af6253b0751e9f25b58b4b0044561c49ef8137c5d73d9e09a
6
+ metadata.gz: 565110d35da1f33e2ade33ca48f7a6d4781e2a7b7c3898d48d0fc961cdb0450cf2acf2d759653fafa3d9235a53681032b7b306e2973faeef2203d3496899a595
7
+ data.tar.gz: 6f1080006959d2695c0087be1e7a691522087abb1438abaaedab5a822fc2d1a3b45dd42c70e01dbd958bbe48ac8ca61a2dbaec38e06a4c5e726777e63493940c
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uc3DmpCitation
4
- VERSION = '0.0.3'
4
+ VERSION = '0.0.4'
5
5
  end
@@ -21,7 +21,7 @@ module Uc3DmpCitation
21
21
  MSG_UNABLE_TO_UPDATE = 'Unable to update the citations on the DMP ID.'
22
22
 
23
23
  class << self
24
- def fetch_citation(doi:, logger: nil)
24
+ def fetch_citation(doi:, work_type: DEFAULT_WORK_TYPE, logger: nil)
25
25
  uri = _doi_to_uri(doi: doi)
26
26
  return nil if uri.nil? || uri.blank?
27
27
 
@@ -31,7 +31,7 @@ module Uc3DmpCitation
31
31
  return nil if resp.nil? || resp.to_s.strip.empty?
32
32
 
33
33
  bibtex = BibTeX.parse(_cleanse_bibtex(text: resp))
34
- work_type = identifier['work_type'].nil? ? determine_work_type(bibtex: bibtex) : identifier['work_type']
34
+ work_type = work_type.nil? ? determine_work_type(bibtex: bibtex) : work_type
35
35
  _bibtex_to_citation(uri: uri, work_type: work_type, bibtex: bibtex)
36
36
  end
37
37
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uc3-dmp-citation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Riley