Published in: Ruby
URL: http://redhanded.hobix.com/inspect/frostedMiniColons.html
unit_of_time = case num when 0..60: "second" when 0..60 * 60: "minute" when 0..60 * 60 * 24: "hour" else "day" end unit_of_time = case when num < 60: "second" when num < 60 * 60: "minute" when num < 60 * 60 * 24: "hour" else "day" end
You need to login to post a comment.
