Skip to content

Instantly share code, notes, and snippets.

@jsierles
Created March 24, 2009 14:02
Show Gist options
  • Save jsierles/84098 to your computer and use it in GitHub Desktop.
Save jsierles/84098 to your computer and use it in GitHub Desktop.
def round_to(decimal_places)
x = self
decimal_places.times do
x = x * 10
end
x = x.round
decimal_places.times do
x = x.to_f / 10
end
x
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment