class Dependabot::GitRef

def ==(other)

def ==(other)
  case other
  when GitRef
    to_h == other.to_h
  else
    false
  end
end