# File lib/chef/version_class.rb, line 35
    def <=>(v)
      [:major, :minor, :patch].each do |method|
        ans = (self.send(method) <=> v.send(method))
        return ans if ans != 0
      end
      0
    end