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
Checked is current date in between two dates. Using Ruby
currentDate = DateTime.now start_date = "2017-03-31" end_date = "2018-03-31" currentDate.between?(start_date, end_date) **Out Put Will be** true or false