Flowdock
method

<=>

Importance_0
v2_1_10 - Show latest stable - 0 notes - Class: Vendor
<=>(other) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems/source/vendor.rb, line 13
  def <=> other
    case other
    when Gem::Source::Lock then
      -1
    when Gem::Source::Vendor then
      0
    when Gem::Source then
      1
    else
      nil
    end
  end
Register or log in to add new notes.