
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
|