Flowdock
method

display_readable

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: DependencyCommand
display_readable(specs, reverse) 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 102
  def display_readable specs, reverse # :nodoc:
    response = String.new

    specs.each do |spec|
      response << print_dependencies(spec)
      unless reverse[spec.full_name].empty? then
        response << "  Used by\n"
        reverse[spec.full_name].each do |sp, dep|
          response << "    #{sp} (#{dep})\n"
        end
      end
      response << "\n"
    end

    say response
  end
Register or log in to add new notes.