Is there an easy way to round a Time down to the nearest 15 minutes?
This is what I'm currently doing. Is there an easier way to do it?
t = Time.new
rounded_t = Time.local(t.year, t.month, t.day, t.hour, t.min/15*15)
|
3
|
Is there an easy way to round a Time down to the nearest 15 minutes? This is what I'm currently doing. Is there an easier way to do it?
|
||
|
|
|
|
You said "round down", so I'm not sure if you're actually looking for the round or the floor, but here's the code to do both. I think something like this reads really well if you add
Note: Active Support was only necessary for the pretty |
|||
|
|
|
|
Ask the Rails core team to implement the method
It's the kind of thing they go for. |
||
|
|
|
Since Ruby allows arithmetic (in seconds) on Times, you can just do this:
|
||
|
|
|
|
Your current evaluation using
is only truncating the min, so
Which is not 'rounding'. You can approximate rounding in a bad-way with
Or, using internals:
|
||
|
|
|
I am not very familiar with the syntax of ruby but you can round down to the nearest 15 minutes using modulo. (i.e. x - (x modulo 15)). I would guess the syntax would be something like
This will make your set of possible values 0, 15, 30, and 45. Assuming 0 <= t.min <= 59. |
|||
|
|
|
|
You could do:
|
||
|
|