module ObjectExtension

Public Instance Methods

try(*a, &b) click to toggle source
Calls superclass method
# File lib/try_corder.rb, line 6
def try(*a, &b)
  TryCorder::Recorder.count(self.class.to_s, caller(1,1).first)

  super(*a, &b)
end