module RDF

Public Class Methods

const_missing(const_name) click to toggle source

deprecate Content

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