class Vindetta::Standard::ISO3779

Public Class Methods

length() click to toggle source
# File lib/vindetta/standard/iso3779.rb, line 10
def self.length
  @length ||= yml.fetch("length")
end
vds() click to toggle source
# File lib/vindetta/standard/iso3779.rb, line 14
def self.vds
  @vds ||= yml.fetch("vds")
end
vis() click to toggle source
# File lib/vindetta/standard/iso3779.rb, line 18
def self.vis
  @vis ||= yml.fetch("vis")
end
wmi() click to toggle source
# File lib/vindetta/standard/iso3779.rb, line 6
def self.wmi
  @wmi ||= yml.fetch("wmi")
end

Private Class Methods

yml() click to toggle source
# File lib/vindetta/standard/iso3779.rb, line 22
def self.yml
  @yml ||= begin
    File.open(File.expand_path("iso3779.yml", __dir__)) do |file|
      YAML.load_file(file)
    end
  end
end