Spec-Zone.ru › Ruby 3.1

модуль DidYouMean::Correctable

Постоянные

SKIP_TO_S_FOR_SUPER_LOOKUP

Открытые методы экземпляров

corrections() Показать исходный код
# File lib/did_you_mean/core_ext/name_error.rb, line 24
def corrections
  @corrections ||= spell_checker.corrections
end
original_message() Показать исходный код
# File lib/did_you_mean/core_ext/name_error.rb, line 6
def original_message
  meth = method(:to_s)
  while meth.owner.const_defined?(:SKIP_TO_S_FOR_SUPER_LOOKUP)
    meth = meth.super_method
  end
  meth.call
end
spell_checker() Показать исходный код
# File lib/did_you_mean/core_ext/name_error.rb, line 28
def spell_checker
  DidYouMean.spell_checkers[self.class.to_s].new(self)
end
to_s() Показать исходный код
# File lib/did_you_mean/core_ext/name_error.rb, line 14
def to_s
  msg = super.dup
  suggestion = DidYouMean.formatter.message_for(corrections)

  msg << suggestion if !msg.include?(suggestion)
  msg
rescue
  super
end
Вызывает метод суперкласса

Ruby Core © 1993–2022 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API