Skip to content

Instantly share code, notes, and snippets.

@tiagoefmoraes
Forked from henrik/big_decimal_inspect.rb
Created March 5, 2015 15:39
Show Gist options
  • Save tiagoefmoraes/5d9f5ae3575854a62eea to your computer and use it in GitHub Desktop.
Save tiagoefmoraes/5d9f5ae3575854a62eea to your computer and use it in GitHub Desktop.
Better BigDecimal inspect for tests and diffs
class BigDecimal
def inspect
format("#<BigDecimal: %s>", to_s('F'))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment