25 lines
458 B
Ruby
Raw Normal View History

2016-10-08 13:25:38 +02:00
require "compat/hbc/cask_loader"
require "compat/hbc/cli/search"
require "compat/hbc/cli/update"
require "compat/hbc/cache"
require "compat/hbc/caskroom"
2017-05-23 17:37:37 +02:00
require "compat/hbc/cli"
2017-07-15 14:46:11 +02:00
require "compat/hbc/dsl"
module Hbc
class << self
2018-05-17 19:13:37 +02:00
module Compat
def init
Cache.delete_legacy_cache
2017-03-06 21:28:34 +01:00
2018-05-17 19:13:37 +02:00
Caskroom.migrate_caskroom_from_repo_to_prefix
Caskroom.migrate_legacy_caskroom
2018-05-17 19:13:37 +02:00
super
end
end
prepend Compat
end
end