module DidYouMean::Correctable

Public Instance Methods

corrections() click to toggle source
# File lib/did_you_mean/core_ext/name_error.rb, line 19
def corrections
  spell_checker.corrections
end
original_message() click to toggle source
# File lib/did_you_mean/core_ext/name_error.rb, line 5
def original_message
  method(:to_s).super_method.call
end
spell_checker() click to toggle source
# File lib/did_you_mean/core_ext/name_error.rb, line 23
def spell_checker
  @spell_checker ||= SPELL_CHECKERS[self.class.to_s].new(self)
end
to_s() click to toggle source
Calls superclass method
# File lib/did_you_mean/core_ext/name_error.rb, line 9
def to_s
  msg = super.dup
  bt  = caller(1, 6)

  msg << Formatter.new(corrections).to_s if IGNORED_CALLERS.all? {|ignored| bt.grep(ignored).empty? }
  msg
rescue
  super
end