Class: Object

Inherits:
BasicObject
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_load(*args) ⇒ Object



110
111
112
113
# File 'lib/new_relic/agent/patch_const_missing.rb', line 110

def new_relic_load(*args)
  nr_check_for_classloading("Object load", *args)
  non_new_relic_load(*args)
end

#new_relic_require(*args) ⇒ Object



105
106
107
108
# File 'lib/new_relic/agent/patch_const_missing.rb', line 105

def new_relic_require(*args)
  nr_check_for_classloading("Object require", *args)    
  non_new_relic_require(*args)
end