Skip to content

Instantly share code, notes, and snippets.

@pointcom
Created January 23, 2018 13:21
Show Gist options
  • Save pointcom/169291eabd78d7fb6e91b080235a62c5 to your computer and use it in GitHub Desktop.
Save pointcom/169291eabd78d7fb6e91b080235a62c5 to your computer and use it in GitHub Desktop.
module IntegerExtension
def to_s
"this is an integer: #{super}"
end
end
Integer.prepend(IntegerExtension)
puts 1.to_s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment