Flowdock
method

show_install_errors

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: InstallCommand
show_install_errors(errors) public

No documentation

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

Hide source
# File lib/rubygems/commands/install_command.rb, line 295
  def show_install_errors(errors) # :nodoc:
    return unless errors

    errors.each do |x|
      return unless Gem::SourceFetchProblem === x

      msg = "Unable to pull data from '#{x.source.uri}': #{x.error.message}"

      alert_warning msg
    end
  end
Register or log in to add new notes.