Module: DidYouMean::Correctable

Defined in:
lib/did_you_mean/core_ext/name_error.rb

Instance Method Summary collapse

Instance Method Details

#correctionsObject



19
20
21
# File 'lib/did_you_mean/core_ext/name_error.rb', line 19

def corrections
  spell_checker.corrections
end

#original_messageObject



3
4
5
# File 'lib/did_you_mean/core_ext/name_error.rb', line 3

def original_message
  method(:to_s).super_method.call
end

#spell_checkerObject



23
24
25
# 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_sObject



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/did_you_mean/core_ext/name_error.rb', line 7

def to_s
  msg = super.dup

  if !cause.respond_to?(:corrections) || cause.corrections.empty?
    msg << DidYouMean.formatter.message_for(corrections)
  end

  msg
rescue
  super
end