mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

Do the usual "disable deprecations" and "uncomment pending deprecations" dance and delete/deprecate/disable relevant/related code.
12 lines
159 B
Ruby
12 lines
159 B
Ruby
# frozen_string_literal: true
|
|
|
|
class String
|
|
module Compat
|
|
def chuzzle
|
|
odisabled ".chuzzle", "&.chomp.presence"
|
|
end
|
|
end
|
|
|
|
prepend Compat
|
|
end
|