Skip to content

Instantly share code, notes, and snippets.

@josephcc
Created August 29, 2014 18:16
Show Gist options
  • Select an option

  • Save josephcc/1670f70e2f6228468072 to your computer and use it in GitHub Desktop.

Select an option

Save josephcc/1670f70e2f6228468072 to your computer and use it in GitHub Desktop.
class Float
alias_method :orig_to_s, :to_s
def to_s
return round(4).orig_to_s
end
def inspect
return to_s
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment