Skip to content

Instantly share code, notes, and snippets.

@ihower
Created May 27, 2011 13:23
Show Gist options
  • Save ihower/995234 to your computer and use it in GitHub Desktop.
Save ihower/995234 to your computer and use it in GitHub Desktop.
class Fixnum
alias_method :old_to_s, :to_s
def to_s
old_to_s
end
end
class String
alias_method :old_to_i, :to_i
def to_i
old_to_i
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment