class Gem::Source::Lock

def <=>(other) # :nodoc:

:nodoc:
def <=>(other) # :nodoc:
  case other
  when Gem::Source::Lock then
    @wrapped <=> other.wrapped
  when Gem::Source then
    1
  else
    nil
  end
end