Flowdock
method

reverse_dependencies

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: DependencyCommand
reverse_dependencies(specs) 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 174
  def reverse_dependencies(specs) # :nodoc:
    reverse = Hash.new { |h, k| h[k] = [] }

    return reverse unless options[:reverse_dependencies]

    specs.each do |spec|
      reverse[spec.full_name] = find_reverse_dependencies spec
    end

    reverse
  end
Register or log in to add new notes.