class RDF::Normalize::URGNA2012

Public Instance Methods

each(&block) click to toggle source
# File lib/rdf/normalize/urgna2012.rb, line 4
def each(&block)
  ns = NormalizationState.new(**@options)
  normalize_statements(ns, &block)
end
to_hash() click to toggle source
# File lib/rdf/normalize/urgna2012.rb, line 9
def to_hash
  ns = NormalizationState.new(**@options)
  normalize_statements(ns)
  ns.canonical_issuer.to_h
end