Class: RelatonIec::DocumentType

Inherits:
RelatonBib::DocumentType
  • Object
show all
Defined in:
lib/relaton_iec/document_type.rb

Constant Summary collapse

DOCTYPES =
%w[
  international-standard technical-specification technical-report
  publicly-available-specification international-workshop-agreement
  guide industry-technical-agreement system-reference-deliverable
].freeze

Instance Method Summary collapse

Constructor Details

#initialize(type:, abbreviation: nil) ⇒ DocumentType

Returns a new instance of DocumentType.



9
10
11
12
# File 'lib/relaton_iec/document_type.rb', line 9

def initialize(type:, abbreviation: nil)
  check_type type
  super
end

Instance Method Details

#check_type(type) ⇒ Object



14
15
16
17
18
# File 'lib/relaton_iec/document_type.rb', line 14

def check_type(type)
  unless DOCTYPES.include? type
    Util.warn "Invalid doctype: `#{type}`"
  end
end