Flowdock
method

fetch_specs

Importance_0
v2_2_9 - Show latest stable - 0 notes - Class: DependencyCommand
fetch_specs(dependency) public

No documentation

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

Hide source
# File lib/rubygems/commands/dependency_command.rb, line 64
  def fetch_specs dependency # :nodoc:
    specs = []

    specs.concat dependency.matching_specs     if local?
    specs.concat fetch_remote_specs dependency if remote?

    ensure_specs specs

    specs.uniq.sort
  end
Register or log in to add new notes.