14 lines
265 B
Ruby
Raw Normal View History

# typed: strong
# frozen_string_literal: true
require "time"
2023-02-07 00:38:46 +00:00
class Time
# Backwards compatibility for formulae that used this ActiveSupport extension
sig { returns(String) }
def rfc3339
odisabled "Time#rfc3339", "Time#xmlschema"
xmlschema
end
2023-02-07 00:38:46 +00:00
end