module Roda::RodaPlugins
def self.deprecate_constant(mod, name)
Deprecate the constant with the given name in the given module,
def self.deprecate_constant(mod, name) # :nocov: if RUBY_VERSION >= '2.3' mod.deprecate_constant(name) end # :nocov: end