Talk datetimes (start and stop) are now parsed in the validate.rb script. However, incorrect timezones passed to Ruby's DateTime.parse are ignored.
This should be checked so that:
- The timezone actually does exist
- The daylight savings time matches the date
Obviously, we'd want to rely on existing Ruby library to check this. Hopefully standard Ruby can handle it. Otherwise, we might need to pull in an additional gem like chronic.
Talk datetimes (start and stop) are now parsed in the
validate.rbscript. However, incorrect timezones passed to Ruby'sDateTime.parseare ignored.This should be checked so that:
Obviously, we'd want to rely on existing Ruby library to check this. Hopefully standard Ruby can handle it. Otherwise, we might need to pull in an additional gem like
chronic.