类 DidYouMean::PatternKeyNameChecker
公共类方法
new(no_matching_pattern_key_error) 点击切换源代码
# File lib/did_you_mean/spell_checkers/pattern_key_name_checker.rb, line 5 def initialize(no_matching_pattern_key_error) @key = no_matching_pattern_key_error.key @keys = no_matching_pattern_key_error.matchee.keys end
公共实例方法
corrections() 点击切换源代码
# File lib/did_you_mean/spell_checkers/pattern_key_name_checker.rb, line 10 def corrections @corrections ||= exact_matches.empty? ? SpellChecker.new(dictionary: @keys).correct(@key).map(&:inspect) : exact_matches end
私有实例方法
exact_matches() 点击切换源代码
# File lib/did_you_mean/spell_checkers/pattern_key_name_checker.rb, line 16 def exact_matches @exact_matches ||= @keys.select { |word| @key == word.to_s }.map(&:inspect) end