класс DidYouMean::PatternKeyNameChecker
Публичные Классовые Методы
# 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
Публичные Экземплярные Методы
# 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
Приватные Экземплярные Методы
# 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
Ruby Core © 1993–2022 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.