Skip to content

Instantly share code, notes, and snippets.

@tjstankus
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tjstankus/acb2172c67c7d45e0448 to your computer and use it in GitHub Desktop.
Save tjstankus/acb2172c67c7d45e0448 to your computer and use it in GitHub Desktop.
def round_up_quarter(f)
result = (f * 4.0).round / 4.0
result > f ? result : result + 0.25
end
round_up_quarter(2.2) # => 2.25
round_up_quarter(4.6) # => 4.75
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment