Module: Rapporteur::CheckerDeprecations
- Included in:
- Checker
- Defined in:
- lib/rapporteur/checker_deprecations.rb
Instance Method Summary collapse
Instance Method Details
#add_check(*args, &block) ⇒ Object
7 8 9 10 |
# 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 ⇒ Object
12 13 14 15 |
# File 'lib/rapporteur/checker_deprecations.rb', line 12 def clear ActiveSupport::Deprecation.warn('use Rapporteur.clear_checks', caller) Rapporteur.clear_checks end |
#run ⇒ Object
17 18 19 20 |
# File 'lib/rapporteur/checker_deprecations.rb', line 17 def run ActiveSupport::Deprecation.warn('use Rapporteur.run', caller) Rapporteur.run end |