Class: Thor::UndefinedCommandError::SpellChecker

Inherits:
Object
  • Object
show all
Defined in:
lib/thor/error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(error) ⇒ SpellChecker

Returns a new instance of SpellChecker.



28
29
30
# File 'lib/thor/error.rb', line 28

def initialize(error)
  @error = error
end

Instance Attribute Details

#errorObject (readonly)

Returns the value of attribute error.



26
27
28
# File 'lib/thor/error.rb', line 26

def error
  @error
end

Instance Method Details

#correctionsObject



32
33
34
# File 'lib/thor/error.rb', line 32

def corrections
  @corrections ||= spell_checker.correct(error.command).map(&:inspect)
end

#spell_checkerObject



36
37
38
# File 'lib/thor/error.rb', line 36

def spell_checker
  DidYouMean::SpellChecker.new(dictionary: error.all_commands)
end