Mike McQuaid cffa5a9864 Disable/delete/add more deprecations
Move various `odeprecated` to `odisabled` and delete uses of
`odisabled`.
2018-04-08 14:57:17 -07:00

12 lines
204 B
Ruby

class Formula
def patches
# Don't print deprecation warning because this method is inherited
# when used.
{}
end
def rake(*)
odisabled "FileUtils#rake", "system \"rake\""
end
end