2024-01-29 18:14:31 -08:00
|
|
|
# typed: strong
|
2021-03-24 10:55:33 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-01-29 18:14:31 -08:00
|
|
|
require "time"
|
2023-02-07 00:38:46 +00:00
|
|
|
|
|
|
|
class Time
|
|
|
|
# Backwards compatibility for formulae that used this ActiveSupport extension
|
2025-06-09 19:06:16 +01:00
|
|
|
sig { returns(String) }
|
|
|
|
def rfc3339
|
2025-07-30 08:32:22 +01:00
|
|
|
odisabled "Time#rfc3339", "Time#xmlschema"
|
2025-06-09 19:06:16 +01:00
|
|
|
xmlschema
|
|
|
|
end
|
2023-02-07 00:38:46 +00:00
|
|
|
end
|