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

- Add some `odeprecated` - Make some `odeprecated` now `odisabled` - Remove `odisabled` code. - Remove old update migrations - Remove GCC 4.0 compiler - Remove Tiger-only code - Remove 32-bit-only code - Remove use of LD64 - Remove GCC 4.3 - 4.8 support.
22 lines
374 B
Ruby
22 lines
374 B
Ruby
require "compat/cask/cache"
|
|
require "compat/cask/cask_loader"
|
|
require "compat/cask/caskroom"
|
|
require "compat/cask/dsl"
|
|
|
|
module Cask
|
|
class << self
|
|
module Compat
|
|
def init
|
|
Cache.delete_legacy_cache
|
|
|
|
Caskroom.migrate_caskroom_from_repo_to_prefix
|
|
Caskroom.migrate_legacy_caskroom
|
|
|
|
super
|
|
end
|
|
end
|
|
|
|
prepend Compat
|
|
end
|
|
end
|