Is there a way to generate something like the following markup:
<select>
<option value="0000">00:00</option>
<option value="0030">00:30</option>
<option value="0100">01:00</option>
<option value="0130">01:30</option>
<option value="0200">02:00</option>
<option value="0230">02:30</option>
<option value="0300">03:00</option>
<!--rest of options omitted for brevity-->
</select>
... all the way up to 23:30 - so repeating every 30 minutes?
I'm using rails 3, and while this works, it doesn't include the minutes (in my case, every half hour)
select_hour(13, :prompt => 'Choose hour')