Skip to content

Instantly share code, notes, and snippets.

@djo
Created December 13, 2012 17:28
Show Gist options
  • Save djo/4278129 to your computer and use it in GitHub Desktop.
Save djo/4278129 to your computer and use it in GitHub Desktop.
Helper to round a number to the desired multiple 0.5.
# Returns a number rounded to the desired multiple 0.5,
# analog of excel's MROUND(A1, 0.05).
def mround(number)
(number * 20).round.to_f / 20
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment