Remove Locations module.

This commit is contained in:
Markus Reiter 2018-06-09 10:14:13 +02:00
parent 12ab263784
commit 1c153f7781
2 changed files with 0 additions and 14 deletions

View File

@ -15,7 +15,6 @@ require "hbc/download"
require "hbc/download_strategy"
require "hbc/exceptions"
require "hbc/installer"
require "hbc/locations"
require "hbc/config"
require "hbc/macos"
require "hbc/pkg"
@ -28,8 +27,6 @@ require "hbc/verify"
require "hbc/version"
module Hbc
include Locations
def self.init
Cache.ensure_cache_exists
Caskroom.ensure_caskroom_exists

View File

@ -1,11 +0,0 @@
module Hbc
module Locations
def self.included(base)
base.extend(ClassMethods)
end
module ClassMethods
end
end
end