mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
19 lines
258 B
Ruby
19 lines
258 B
Ruby
module FloatMonkeyPatches
|
|
def round_up_to_one
|
|
if positive? && self < 1
|
|
1.0
|
|
else
|
|
self
|
|
end
|
|
end
|
|
|
|
def round_down_to_five
|
|
if positive? && self > 5
|
|
5.0
|
|
else
|
|
self
|
|
end
|
|
end
|
|
end
|
|
|
|
Float.include FloatMonkeyPatches
|