briard 2.4.2 → 2.6.1
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 +4 -4
- data/.github/workflows/codeql-analysis.yml +72 -0
- data/.github/workflows/rubocop.yml +50 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +144 -620
- data/.rubocop_todo.yml +76 -0
- data/CHANGELOG.md +18 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +43 -9
- data/Rakefile +1 -1
- data/{bolognese.gemspec → briard.gemspec} +46 -39
- data/lib/briard/array.rb +2 -2
- data/lib/briard/author_utils.rb +79 -71
- data/lib/briard/cli.rb +12 -13
- data/lib/briard/crossref_utils.rb +73 -61
- data/lib/briard/datacite_utils.rb +132 -106
- data/lib/briard/doi_utils.rb +10 -10
- data/lib/briard/metadata.rb +96 -106
- data/lib/briard/metadata_utils.rb +87 -78
- data/lib/briard/readers/bibtex_reader.rb +65 -65
- data/lib/briard/readers/cff_reader.rb +88 -70
- data/lib/briard/readers/citeproc_reader.rb +90 -84
- data/lib/briard/readers/codemeta_reader.rb +68 -50
- data/lib/briard/readers/crosscite_reader.rb +2 -2
- data/lib/briard/readers/crossref_reader.rb +249 -210
- data/lib/briard/readers/datacite_json_reader.rb +3 -3
- data/lib/briard/readers/datacite_reader.rb +225 -189
- data/lib/briard/readers/npm_reader.rb +49 -42
- data/lib/briard/readers/ris_reader.rb +82 -80
- data/lib/briard/readers/schema_org_reader.rb +182 -159
- data/lib/briard/string.rb +1 -1
- data/lib/briard/utils.rb +4 -4
- data/lib/briard/version.rb +3 -1
- data/lib/briard/whitelist_scrubber.rb +11 -4
- data/lib/briard/writers/bibtex_writer.rb +14 -8
- data/lib/briard/writers/cff_writer.rb +33 -26
- data/lib/briard/writers/codemeta_writer.rb +19 -15
- data/lib/briard/writers/csv_writer.rb +6 -4
- data/lib/briard/writers/datacite_json_writer.rb +8 -2
- data/lib/briard/writers/jats_writer.rb +33 -28
- data/lib/briard/writers/rdf_xml_writer.rb +1 -1
- data/lib/briard/writers/ris_writer.rb +30 -18
- data/lib/briard/writers/turtle_writer.rb +1 -1
- data/lib/briard.rb +6 -6
- data/rubocop.sarif +0 -0
- data/spec/array_spec.rb +5 -5
- data/spec/author_utils_spec.rb +151 -132
- data/spec/datacite_utils_spec.rb +135 -83
- data/spec/doi_utils_spec.rb +168 -164
- data/spec/find_from_format_spec.rb +69 -69
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/onlies_keep_specific_tags.yml +65 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/removes_a_tags.yml +65 -0
- data/spec/metadata_spec.rb +91 -90
- data/spec/readers/bibtex_reader_spec.rb +43 -38
- data/spec/readers/cff_reader_spec.rb +165 -153
- data/spec/readers/citeproc_reader_spec.rb +45 -40
- data/spec/readers/codemeta_reader_spec.rb +128 -115
- data/spec/readers/crosscite_reader_spec.rb +34 -24
- data/spec/readers/crossref_reader_spec.rb +1098 -939
- data/spec/readers/datacite_json_reader_spec.rb +53 -40
- data/spec/readers/datacite_reader_spec.rb +1541 -1337
- data/spec/readers/npm_reader_spec.rb +48 -43
- data/spec/readers/ris_reader_spec.rb +53 -47
- data/spec/readers/schema_org_reader_spec.rb +329 -267
- data/spec/spec_helper.rb +6 -5
- data/spec/utils_spec.rb +371 -347
- data/spec/writers/bibtex_writer_spec.rb +143 -143
- data/spec/writers/cff_writer_spec.rb +96 -90
- data/spec/writers/citation_writer_spec.rb +34 -33
- data/spec/writers/citeproc_writer_spec.rb +226 -224
- data/spec/writers/codemeta_writer_spec.rb +18 -16
- data/spec/writers/crosscite_writer_spec.rb +91 -73
- data/spec/writers/crossref_writer_spec.rb +99 -91
- data/spec/writers/csv_writer_spec.rb +70 -70
- data/spec/writers/datacite_json_writer_spec.rb +78 -68
- data/spec/writers/datacite_writer_spec.rb +417 -322
- data/spec/writers/jats_writer_spec.rb +177 -161
- data/spec/writers/rdf_xml_writer_spec.rb +68 -63
- data/spec/writers/ris_writer_spec.rb +162 -162
- data/spec/writers/schema_org_writer_spec.rb +329 -294
- data/spec/writers/turtle_writer_spec.rb +47 -47
- metadata +242 -166
- data/.github/workflows/release.yml +0 -47
@@ -3,50 +3,51 @@
|
|
3
3
|
require 'spec_helper'
|
4
4
|
|
5
5
|
describe Briard::Metadata, vcr: true do
|
6
|
-
context
|
7
|
-
it
|
8
|
-
input =
|
9
|
-
subject =
|
10
|
-
expect(subject.style).to eq(
|
11
|
-
expect(subject.locale).to eq(
|
12
|
-
expect(subject.citation).to eq(
|
6
|
+
context 'write metadata as citation' do
|
7
|
+
it 'Journal article' do
|
8
|
+
input = '10.7554/eLife.01567'
|
9
|
+
subject = described_class.new(input: input, from: 'crossref')
|
10
|
+
expect(subject.style).to eq('apa')
|
11
|
+
expect(subject.locale).to eq('en-US')
|
12
|
+
expect(subject.citation).to eq('Sankar, M., Nieminen, K., Ragni, L., Xenarios, I., & Hardtke, C. S. (2014). Automated quantitative histology reveals vascular morphodynamics during Arabidopsis hypocotyl secondary growth. <i>ELife</i>, <i>3</i>, e01567. https://doi.org/10.7554/elife.01567')
|
13
13
|
end
|
14
14
|
|
15
|
-
it
|
16
|
-
input =
|
17
|
-
subject =
|
18
|
-
|
19
|
-
expect(subject.
|
20
|
-
expect(subject.
|
15
|
+
it 'Journal article vancouver style' do
|
16
|
+
input = '10.7554/eLife.01567'
|
17
|
+
subject = described_class.new(input: input, from: 'crossref', style: 'vancouver',
|
18
|
+
locale: 'en-US')
|
19
|
+
expect(subject.style).to eq('vancouver')
|
20
|
+
expect(subject.locale).to eq('en-US')
|
21
|
+
expect(subject.citation).to eq('Sankar M, Nieminen K, Ragni L, Xenarios I, Hardtke CS. Automated quantitative histology reveals vascular morphodynamics during Arabidopsis hypocotyl secondary growth. eLife [Internet]. 2014Feb11;3:e01567. Available from: https://elifesciences.org/articles/01567')
|
21
22
|
end
|
22
23
|
|
23
|
-
it
|
24
|
-
input =
|
25
|
-
subject =
|
24
|
+
it 'Dataset' do
|
25
|
+
input = 'https://doi.org/10.5061/DRYAD.8515'
|
26
|
+
subject = described_class.new(input: input, from: 'datacite')
|
26
27
|
|
27
|
-
expect(subject.citation).to eq(
|
28
|
+
expect(subject.citation).to eq('Ollomo, B., Durand, P., Prugnolle, F., Douzery, E. J. P., Arnathau, C., Nkoghe, D., Leroy, E., & Renaud, F. (2011). <i>Data from: A new malaria agent in African hominids.</i> (Version 1) [Data set]. Dryad. https://doi.org/10.5061/dryad.8515')
|
28
29
|
end
|
29
30
|
|
30
|
-
it
|
31
|
-
input =
|
32
|
-
subject =
|
33
|
-
expect(subject.citation).to eq(
|
31
|
+
it 'Missing author' do
|
32
|
+
input = 'https://doi.org/10.3390/publications6020015'
|
33
|
+
subject = described_class.new(input: input, from: 'crossref')
|
34
|
+
expect(subject.citation).to eq('Kohls, A., & Mele, S. (2018). Converting the Literature of a Scientific Field to Open Access through Global Collaboration: The Experience of SCOAP3 in Particle Physics. <i>Publications</i>, <i>6</i>(2), 15. https://doi.org/10.3390/publications6020015')
|
34
35
|
end
|
35
36
|
|
36
|
-
it
|
37
|
-
input =
|
38
|
-
subject =
|
39
|
-
expect(subject.style).to eq(
|
40
|
-
expect(subject.locale).to eq(
|
41
|
-
expect(subject.citation).to eq(
|
37
|
+
it 'software w/version' do
|
38
|
+
input = 'https://doi.org/10.5281/zenodo.2598836'
|
39
|
+
subject = described_class.new(input: input, from: 'datacite')
|
40
|
+
expect(subject.style).to eq('apa')
|
41
|
+
expect(subject.locale).to eq('en-US')
|
42
|
+
expect(subject.citation).to eq('Lab For Exosphere And Near Space Environment Studies. (2019). <i>lenses-lab/LYAO_RT-2018JA026426: Original Release</i> (Version 1.0.0) [Computer software]. Zenodo. https://doi.org/10.5281/zenodo.2598836')
|
42
43
|
end
|
43
44
|
|
44
|
-
it
|
45
|
-
input =
|
46
|
-
subject =
|
47
|
-
expect(subject.style).to eq(
|
48
|
-
expect(subject.locale).to eq(
|
49
|
-
expect(subject.citation).to eq(
|
45
|
+
it 'interactive resource without dates' do
|
46
|
+
input = 'https://doi.org/10.34747/g6yb-3412'
|
47
|
+
subject = described_class.new(input: input, from: 'datacite')
|
48
|
+
expect(subject.style).to eq('apa')
|
49
|
+
expect(subject.locale).to eq('en-US')
|
50
|
+
expect(subject.citation).to eq('Clark, D. (2019). <i>Exploring the "Many analysts, one dataset" project from COS</i>. Gigantum, Inc. https://doi.org/10.34747/g6yb-3412')
|
50
51
|
end
|
51
52
|
end
|
52
53
|
end
|