Method: Gem::Specification#sort_obj

Defined in:
lib/extlib/rubygems.rb

#sort_objArray<Array>

Overwrite this so that gems in the gems directory get preferred over gems from any other location. If there are two gems of different versions in the gems directory, the later one will load as usual.

Returns:

  • (Array<Array>)

    The object used for sorting gem specs.



34
35
36
# File 'lib/extlib/rubygems.rb', line 34

def sort_obj
  [@name, installation_path == File.join(defined?(Merb) && Merb.respond_to?(:root) ? Merb.root : Dir.pwd,"gems") ? 1 : -1, @version.to_ints, @new_platform == Gem::Platform::RUBY ? -1 : 1]
end