Flowdock
method

_resort!

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: Specification
_resort!() public

No documentation

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

Hide source
# File lib/rubygems/specification.rb, line 283
  def self._resort! # :nodoc:
    @@all.sort! { |a, b|
      names = a.name <=> b.name
      next names if names.nonzero?
      b.version <=> a.version
    }
  end
Register or log in to add new notes.