
The next minor release will be Homebrew 4.6.0 so let's do the usual deprecation/disable/remove code cycle.
14 lines
265 B
Ruby
14 lines
265 B
Ruby
# typed: strong
|
|
# frozen_string_literal: true
|
|
|
|
require "time"
|
|
|
|
class Time
|
|
# Backwards compatibility for formulae that used this ActiveSupport extension
|
|
sig { returns(String) }
|
|
def rfc3339
|
|
odisabled "Time#rfc3339", "Time#xmlschema"
|
|
xmlschema
|
|
end
|
|
end
|