Class: Pubid::Ieee::Identifiers::SiStandard

Inherits:
Base
  • Object
show all
Defined in:
lib/pubid/ieee/identifiers/si_standard.rb

Overview

SI Standard (Système International) identifier IEEE/ASTM SI standards for metric system Handles both:

  • SI: Published standards (IEEE/ASTM SI 10-1997)
  • PSI: Proposed SI (drafts: IEEE/ASTM PSI 10/D2, October 2015)

Constant Summary collapse

TYPED_STAGES =

TYPED_STAGES for SI standards

[
  Components::TypedStage.new(
    abbr: ["SI"],
    type_code: "SI",
    stage_code: "published",
  ),
  Components::TypedStage.new(
    abbr: ["PSI"],
    type_code: "SI",
    stage_code: "draft",
  ),
].freeze

Instance Attribute Summary collapse

Instance Attribute Details

#draft_objObject

Use proper Draft component (Lutaml::Model object)



31
32
33
# File 'lib/pubid/ieee/identifiers/si_standard.rb', line 31

def draft_obj
  @draft_obj
end