uc3-dmp-citation 0.0.8 → 0.0.9

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: 67a332e53500ff2bcedaa01ba62b35d80e858216621eed9f274132185cbb26a9
4
- data.tar.gz: 8bbfae020d9a4641a7369cf82adb1748d20561b5e23d5817e66c5f435e361314
3
+ metadata.gz: 2c120b3d741026fc7553ef857a2e7532766d82042c9aa0462e1087d655b529ee
4
+ data.tar.gz: 8c3a73edad515a2b2d4bddd4638488870decbfdf6a2acb42daea2ea94fb60520
5
5
  SHA512:
6
- metadata.gz: a04c26a5fe55c85d3859351489365235a7bb8633cbacf3f5ae72f0c024ce8ee2aa863d62adb52934169f420d3adcdcadd734bfdaf9233d362845df1f0e5e9a89
7
- data.tar.gz: 99664e3232b91adb6fa6759c648acb2c0300c758dfffba88ee6124dd95dc4f8c18148445996ab47497effafc640013059a71784e067e5b9683ecf4feb98821ce
6
+ metadata.gz: 66d174fa3ee024fcbaf61ef94a09b03aea6d3dd163af60e361e9061e954c9738794f9705f9d9dae2500a96aee736de2b0ccdabd91c1149066fec17578f1b48de
7
+ data.tar.gz: fd5a941c113d667badf623f6fe2d9edadd35721d145259c1f17e9c31f66bf879e7af2c456a3c370062653de6009e2df88cd56da325d974e902c2ac972bda3537
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uc3DmpCitation
4
- VERSION = '0.0.8'
4
+ VERSION = '0.0.9'
5
5
  end
@@ -36,11 +36,12 @@ module Uc3DmpCitation
36
36
  end
37
37
  # rubocop:enable Metrics/AbcSize
38
38
 
39
+ # Convert the specified BibTex string into a citation
39
40
  def bibtex_to_citation(bibtex_as_string:)
40
41
  return nil unless bibtex_as_string.is_a?(String)
41
42
 
42
43
  bibtex = BibTeX.parse(_cleanse_bibtex(text: bibtex_as_string))
43
- work_type = work_type.nil? ? determine_work_type(bibtex:) : work_type
44
+ work_type = work_type.nil? ? _determine_work_type(bibtex:) : work_type
44
45
  style = DEFAULT_CITATION_STYLE if style.nil?
45
46
  _bibtex_to_citation(uri:, work_type:, style:, bibtex:)
46
47
  end
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.8
4
+ version: 0.0.9
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-10-27 00:00:00.000000000 Z
11
+ date: 2023-10-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: byebug