class Commands::Track::MissingCredentialsError

Public Class Methods

new(host) click to toggle source
Calls superclass method
# File lib/commands/track/errors.rb, line 16
def initialize(host)
  super ".netrc does not container credentials for #{host}"
end

Public Instance Methods

==(other) click to toggle source
# File lib/commands/track/errors.rb, line 20
def ==(other)
  to_s == other.to_s
end