lib/rugged/object.rb



# Copyright (C) the Rugged contributors.  All rights reserved.
#
# This file is part of Rugged, distributed under the MIT license.
# For full terms see the included LICENSE file.

module Rugged
  class Object
    def <=>(other)
      self.oid <=> other.oid
    end
  end
end