uc3-dmp-citation 0.0.3 → 0.0.5

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: 33d3c1379d1dcfe500b123f98bc555913c3f72d76cad5df9d5bd8f6f03a39852
4
+ data.tar.gz: 39b8ac0b6b989c40f52bda21d14e6db32c7b11b6610f8e8a66c33ec48632749c
5
5
  SHA512:
6
- metadata.gz: 5db74525a5425672a53c2b40091c93a98bd675fd28639ce8bb8b471c40018155fe670a5ddef0d82a658d672a8f581db33f0375e06308a8564561de92daa212a0
7
- data.tar.gz: 34c7659bae12077d1691584a5d579c146b9632f48ecb691bd23dc389ac1eddb4ead4559c5cec807af6253b0751e9f25b58b4b0044561c49ef8137c5d73d9e09a
6
+ metadata.gz: 0f9625b4776712fe7090e0e3d98f274e1289a9322f8ca18a736f220038894ee5846f60fff6cca66c9eca2f715df9bc6ea6c9a1baf24d719d0534586ae03a43b1
7
+ data.tar.gz: 95f3b54d33d563547a49a4a0fb084112ce4122b5e34cd48aeac60dc82d57de79e8ff8380c5e7c04a81b9063a303cb261c5cb4f0334f3cd0ed69b15f16bcebf42
@@ -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.5'
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, style: DEFAULT_CITATION_STYLE, logger: nil)
25
25
  uri = _doi_to_uri(doi: doi)
26
26
  return nil if uri.nil? || uri.blank?
27
27
 
@@ -31,8 +31,9 @@ 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']
35
- _bibtex_to_citation(uri: uri, work_type: work_type, bibtex: bibtex)
34
+ work_type = work_type.nil? ? determine_work_type(bibtex: bibtex) : work_type
35
+ style = style.nil? ? DEFAULT_CITATION_STYLE : style
36
+ _bibtex_to_citation(uri: uri, work_type: work_type, style: style, bibtex: bibtex)
36
37
  end
37
38
 
38
39
  private
metadata CHANGED
@@ -1,14 +1,14 @@
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.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Riley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-17 00:00:00.000000000 Z
11
+ date: 2023-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: byebug