patch a few missing tests, deprecate server model, fix a few bugs

This commit is contained in:
Kyle Drake 2014-09-12 19:09:58 -07:00
parent 86990f3535
commit 50c1f67bdf
14 changed files with 90 additions and 49 deletions

View file

@ -2,8 +2,4 @@ class Numeric
def roundup(nearest=10)
self % nearest == 0 ? self : self + nearest - (self % nearest)
end
def rounddown(nearest=10)
self % nearest == 0 ? self : self - (self % nearest)
end
end
end