module Rapporteur::CheckerDeprecations

Public Instance Methods

add_check(*args, &block) click to toggle source
# File lib/rapporteur/checker_deprecations.rb, line 7
def add_check(*args, &block)
  ActiveSupport::Deprecation.warn('use Rapporteur.add_check', caller)
  Rapporteur.add_check(*args, &block)
end
clear() click to toggle source
# File lib/rapporteur/checker_deprecations.rb, line 12
def clear
  ActiveSupport::Deprecation.warn('use Rapporteur.clear_checks', caller)
  Rapporteur.clear_checks
end
run() click to toggle source
# File lib/rapporteur/checker_deprecations.rb, line 17
def run
  ActiveSupport::Deprecation.warn('use Rapporteur.run', caller)
  Rapporteur.run
end