Class: RelatonBib::Contributor
Overview
Constant Summary
Constants included
from RelatonBib
VERSION
Instance Attribute Summary collapse
Instance Method Summary
collapse
Methods included from RelatonBib
array, format_date, grammar_hash, parse_date, parse_yaml
Methods included from Config
#configuration, #configure
Constructor Details
#initialize(url: nil, contact: []) ⇒ Contributor
Returns a new instance of Contributor.
222
223
224
225
|
# File 'lib/relaton_bib/contributor.rb', line 222
def initialize(url: nil, contact: [])
@uri = URI url if url
@contact = contact
end
|
Instance Attribute Details
218
219
220
|
# File 'lib/relaton_bib/contributor.rb', line 218
def contact
@contact
end
|
#uri ⇒ URI
215
216
217
|
# File 'lib/relaton_bib/contributor.rb', line 215
def uri
@uri
end
|
Instance Method Details
#to_asciibib(prefix = "") ⇒ String
248
249
250
251
252
253
254
255
256
257
|
# File 'lib/relaton_bib/contributor.rb', line 248
def to_asciibib(prefix = "") pref = prefix.empty? ? prefix : "#{prefix}."
out = ""
out += "#{pref}url:: #{uri}\n" if uri
addr = contact.select { |c| c.is_a? RelatonBib::Address }
addr.each { |ct| out += ct.to_asciibib prefix, addr.size }
cont = contact.select { |c| c.is_a? RelatonBib::Contact }
cont.each { |ct| out += ct.to_asciibib prefix, cont.size }
out
end
|
#to_hash ⇒ Hash
239
240
241
242
243
244
|
# File 'lib/relaton_bib/contributor.rb', line 239
def to_hash
hash = {}
hash["url"] = uri.to_s if uri
hash["contact"] = single_element_array(contact) if contact&.any?
hash
end
|
#to_xml(builder) ⇒ Object
234
235
236
|
# File 'lib/relaton_bib/contributor.rb', line 234
def to_xml(builder)
contact.each { |contact| contact.to_xml builder }
end
|
#url ⇒ String
229
230
231
|
# File 'lib/relaton_bib/contributor.rb', line 229
def url
@uri.to_s
end
|