Class: RelatonBib::OrgIdentifier
- Defined in:
- lib/relaton_bib/organization.rb
Overview
Organization identifier.
Instance Attribute Summary collapse
- #type ⇒ String readonly
- #value ⇒ String readonly
Instance Method Summary collapse
-
#initialize(type, value) ⇒ OrgIdentifier
constructor
A new instance of OrgIdentifier.
- #to_asciibib(prefix = "", count = 1) ⇒ String
- #to_hash ⇒ Hash
- #to_xml(builder) ⇒ Object
Constructor Details
#initialize(type, value) ⇒ OrgIdentifier
Returns a new instance of OrgIdentifier.
19 20 21 22 23 24 25 26 |
# File 'lib/relaton_bib/organization.rb', line 19 def initialize(type, value) # unless [ORCID, URI].include? type # raise ArgumentError, 'Invalid type. It should be "orsid" or "uri".' # end @type = type @value = value end |
Instance Attribute Details
#type ⇒ String (readonly)
12 13 14 |
# File 'lib/relaton_bib/organization.rb', line 12 def type @type end |
#value ⇒ String (readonly)
15 16 17 |
# File 'lib/relaton_bib/organization.rb', line 15 def value @value end |
Instance Method Details
#to_asciibib(prefix = "", count = 1) ⇒ String
41 42 43 44 45 46 47 |
# File 'lib/relaton_bib/organization.rb', line 41 def to_asciibib(prefix = "", count = 1) pref = prefix.empty? ? prefix : "#{prefix}." out = count > 1 ? "#{pref}identifier::\n" : "" out += "#{pref}identifier.type:: #{type}\n" out += "#{pref}identifier.value:: #{value}\n" out end |
#to_hash ⇒ Hash
34 35 36 |
# File 'lib/relaton_bib/organization.rb', line 34 def to_hash { "type" => type, "id" => value } end |
#to_xml(builder) ⇒ Object
29 30 31 |
# File 'lib/relaton_bib/organization.rb', line 29 def to_xml(builder) builder.identifier(value, type: type) end |