module ChronoTrigger::Helpers::MITF
Public Instance Methods
moment_in_the_future(time_with_zone)
click to toggle source
# File lib/chrono_trigger/helpers/mitf.rb, line 12 def moment_in_the_future(time_with_zone) raise(LostInTimeError, "Argument must be of type ActiveSupport::TimeWithZone eg. right_now + 1.second") unless time_with_zone.is_a?(ActiveSupport::TimeWithZone) raise(TodayIsTomorrowsYesterday, "Time must be in the future eg. 1.second.from_now") unless time_with_zone.future? Time.zone.today + time_with_zone.hour.hours + time_with_zone.min.minutes + time_with_zone.sec.seconds end