Class: Module
- Includes:
- ClassLoadingWatcher::SanityCheck
- Defined in:
- lib/new_relic/agent/patch_const_missing.rb
Overview
:nodoc:
Instance Method Summary collapse
Methods included from ClassLoadingWatcher::SanityCheck
#nr_check_for_classloading, #nr_check_for_constmissing
Instance Method Details
#new_relic_const_missing(*args) ⇒ Object
120 121 122 123 124 |
# File 'lib/new_relic/agent/patch_const_missing.rb', line 120 def new_relic_const_missing(*args) nr_check_for_constmissing("Module #{self.name} const_missing", *args) nr_check_for_classloading("Module #{self.name} const_missing", *args) non_new_relic_const_missing(*args) end |