Method: Mactag::GemNotFoundError#to_s

Defined in:
lib/mactag/errors.rb

#to_sObject



24
25
26
27
28
29
30
# File 'lib/mactag/errors.rb', line 24

def to_s
  if gem.version
    "Gem #{gem.name} with version #{gem.version} not found"
  else
    "Gem #{gem.name} not found"
  end
end