Skip to content

Instantly share code, notes, and snippets.

@henrik
Created August 20, 2013 11:52
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save henrik/6280438 to your computer and use it in GitHub Desktop.
Save henrik/6280438 to your computer and use it in GitHub Desktop.
Better BigDecimal#inspect. Great with tests. By @aalin.
class BigDecimal
def inspect
format("#<BigDecimal:%x %s>", object_id, to_s('F'))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment