View original Gist on GitHub
class String alias :orig_length :length def length "Length of string '#{self}' is: #{orig_length}" end end "abc".length #=> "Length of string 'abc' is: 3"