Exception: Cask::TapCaskAmbiguityError Private

Inherits:
CaskError show all
Defined in:
cask/exceptions.rb

Overview

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

Error when a cask with the same name is found in multiple taps.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(token, loaders) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:



128
129
130
131
132
133
134
135
136
137
138
139
140
# File 'cask/exceptions.rb', line 128

def initialize(token, loaders)
  @loaders = loaders

  taps = loaders.map(&:tap)
  casks = taps.map { |tap| "#{tap}/#{token}" }
  cask_list = casks.sort.map { |f| "\n       * #{f}" }.join

  super <<~EOS
    Cask #{token} exists in multiple taps:#{cask_list}

    Please use the fully-qualified name (e.g. #{casks.first}) to refer to a specific Cask.
  EOS
end

Instance Attribute Details

#loadersArray<CaskLoader::FromNameLoader> (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.



125
126
127
# File 'cask/exceptions.rb', line 125

def loaders
  @loaders
end

#tokenString (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



122
123
124
# File 'cask/exceptions.rb', line 122

def token
  @token
end