class Commands::Track::RepoIsNotForkError
Public Class Methods
new(fork)
click to toggle source
Calls superclass method
# File lib/commands/track/errors.rb, line 32 def initialize(fork) super "#{fork} is not a fork. Please for the CIC repo and try again" end
Public Instance Methods
==(other)
click to toggle source
# File lib/commands/track/errors.rb, line 36 def ==(other) to_s == other.to_s end