Skip to content

Instantly share code, notes, and snippets.

@jschementi
Created April 11, 2009 18:43
Show Gist options
  • Save jschementi/93671 to your computer and use it in GitHub Desktop.
Save jschementi/93671 to your computer and use it in GitHub Desktop.
class A
alias_method :old_inspect, :inspect
def inspect
"Object inspection: " + old_inspect
end
end
#>>> a = A.new
#=> Object inspection: #<A:0x0000076>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment