Class: DidYouMean::MethodNameChecker
| Relationships & Source Files | |
| Inherits: | Object | 
| Defined in: | lib/did_you_mean/spell_checkers/method_name_checker.rb | 
Constant Summary
- 
    NAMES_TO_EXCLUDE =
    
 # File 'lib/did_you_mean/spell_checkers/method_name_checker.rb', line 7{ NilClass => nil.methods }
- 
    RB_RESERVED_WORDS =
    # File 'lib/did_you_mean/spell_checkers/method_name_checker.rb', line 21RB_RESERVED_WORDSis the list of reserved words in Ruby that take an argument. Unlike VariableNameChecker::RB_RESERVED_WORDS, these reserved words require an argument, and aNoMethodErroris raised due to the presence of the argument.The MethodNameCheckerwill use this list to suggest a reversed word if aNoMethodErroris raised and found closest matches.Also see VariableNameChecker::RB_RESERVED_WORDS. %i( alias case def defined? elsif end ensure for rescue super undef unless until when while yield )
Class Method Summary
- .new(exception) ⇒ MethodNameChecker constructor
Instance Attribute Summary
- #method_name readonly
- #receiver readonly
Instance Method Summary
Constructor Details
    .new(exception)  ⇒ MethodNameChecker 
  
# File 'lib/did_you_mean/spell_checkers/method_name_checker.rb', line 42
def initialize(exception) @method_name = exception.name @receiver = exception.receiver @private_call = exception.respond_to?(:private_call?) ? exception.private_call? : false end
Instance Attribute Details
#method_name (readonly)
[ GitHub ]# File 'lib/did_you_mean/spell_checkers/method_name_checker.rb', line 5
attr_reader :method_name, :receiver
#receiver (readonly)
[ GitHub ]# File 'lib/did_you_mean/spell_checkers/method_name_checker.rb', line 5
attr_reader :method_name, :receiver
Instance Method Details
#corrections
[ GitHub ]# File 'lib/did_you_mean/spell_checkers/method_name_checker.rb', line 48
def corrections @corrections ||= begin dictionary = method_names dictionary = RB_RESERVED_WORDS + dictionary if @private_call SpellChecker.new(dictionary: dictionary).correct(method_name) - names_to_exclude end end
#method_names
[ GitHub ]# File 'lib/did_you_mean/spell_checkers/method_name_checker.rb', line 57
def method_names if Object === receiver method_names = receiver.methods + receiver.singleton_methods method_names += receiver.private_methods if @private_call method_names.uniq! # Assume that people trying to use a writer are not interested in a reader # and vice versa if method_name.match?(/=\Z/) method_names.select! { |name| name.match?(/=\Z/) } else method_names.reject! { |name| name.match?(/=\Z/) } end method_names else [] end end
#names_to_exclude
[ GitHub ]# File 'lib/did_you_mean/spell_checkers/method_name_checker.rb', line 75
def names_to_exclude Object === receiver ? NAMES_TO_EXCLUDE[receiver.class] : [] end