Skip to content

Instantly share code, notes, and snippets.

@acook
Created September 8, 2013 08:42
Show Gist options
  • Save acook/6483002 to your computer and use it in GitHub Desktop.
Save acook/6483002 to your computer and use it in GitHub Desktop.
def clean_round value
rounded = value.round(2)
value == rounded ? value.round(0) : rounded
end
clean_round 10.0/3 #=> 3.33
clean_round 9.0/3 #=> 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment