I have an event with start_time and end_time and want to check if the event is \"in progress\". That would be to check if today\'s date is in the r
start_time
end_time
If they're timestamps:
def in_progress? (start_time..end_time).include?(Time.now) end