In Files

  • rubygems/exceptions.rb

Class/Module Index [+]

Quicksearch

Gem::UnknownCommandError

Attributes

unknown_command[R]

Public Class Methods

attach_correctable() click to toggle source
 
               # File rubygems/exceptions.rb, line 22
def self.attach_correctable
  return if defined?(@attached)

  if defined?(DidYouMean::SPELL_CHECKERS) && defined?(DidYouMean::Correctable)
    if DidYouMean.respond_to?(:correct_error)
      DidYouMean.correct_error(Gem::UnknownCommandError, Gem::UnknownCommandSpellChecker)
    else
      DidYouMean::SPELL_CHECKERS['Gem::UnknownCommandError'] =
        Gem::UnknownCommandSpellChecker

      prepend DidYouMean::Correctable
    end
  end

  @attached = true
end
            
new(unknown_command) click to toggle source
 
               # File rubygems/exceptions.rb, line 15
def initialize(unknown_command)
  self.class.attach_correctable

  @unknown_command = unknown_command
  super("Unknown command #{unknown_command}")
end
            
There is an updated format of the API docs for this version here.