module RDF

Public Class Methods

const_missing(const_name) click to toggle source

deprecate IIIFPresentation

Calls superclass method
# File lib/rdf/iiif/vocab.rb, line 5
def self.const_missing(const_name)
  super unless const_name == :IIIFPresentation
  warn "DEPRECATION WARNING: the class RDF::IIIFPresentation is deprecated. Use RDF::Vocab::IIIF from https://github.com/ruby-rdf/rdf-vocab instead."
  IIIFPresentationDeprecated
end