method

doctor

ruby latest stable - Class: Gem::Commands::CheckCommand
doctor()
public

No documentation available.

# File lib/rubygems/commands/check_command.rb, line 60
  def doctor
    say 'Checking for files from uninstalled gems...'
    say

    Gem.path.each do |gem_repo|
      doctor = Gem::Doctor.new gem_repo, options[:dry_run]
      doctor.doctor
    end
  end