2021-03-24 10:55:33 +01:00
|
|
|
# typed: false
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module TimeRemaining
|
|
|
|
refine Time do
|
|
|
|
def remaining
|
|
|
|
[0, self - Time.now].max
|
|
|
|
end
|
|
|
|
|
|
|
|
def remaining!
|
|
|
|
r = remaining
|
|
|
|
|
|
|
|
raise Timeout::Error if r <= 0
|
|
|
|
|
|
|
|
r
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2023-02-07 00:38:46 +00:00
|
|
|
|
|
|
|
class Time
|
|
|
|
# Backwards compatibility for formulae that used this ActiveSupport extension
|
|
|
|
alias rfc3339 xmlschema
|
|
|
|
end
|