Sha256: 34035c23f8dd36646c44218e34d107be67ee2f940a8262dec6b587d2cb4a9f7c
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true module Bolognese module Writers module RisWriter def ris { "TY" => ris_type, "T1" => parse_attributes(title, content: "text", first: true), "T2" => periodical && periodical["title"], "AU" => to_ris(creator), "DO" => doi, "UR" => b_url, "AB" => parse_attributes(description, content: "text", first: true), "KW" => Array.wrap(keywords).map { |k| parse_attributes(k, content: "text", first: true) }.presence, "PY" => publication_year, "PB" => publisher, "LA" => language, "VL" => volume, "IS" => issue, "SP" => first_page, "EP" => last_page, "SN" => Array.wrap(related_identifiers).find { |ri| ri["relation_type"] == "IsPartOf" }.to_h.fetch("id", nil), "ER" => "" }.compact.map { |k, v| v.is_a?(Array) ? v.map { |vi| "#{k} - #{vi}" }.join("\r\n") : "#{k} - #{v}" }.join("\r\n") end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bolognese-1.0.1 | lib/bolognese/writers/ris_writer.rb |
bolognese-1.0 | lib/bolognese/writers/ris_writer.rb |