Sha256: ece136b784e2bfdc274f9ca34757bae2b725f985b4bcc5d1afb17b5ab8619ecb
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
# frozen-string-literal: true require 'delegate' require "did_you_mean/spell_checker" module DidYouMean class ClassNameChecker attr_reader :class_name def initialize(exception) @class_name, @receiver = exception.name, exception.receiver end def corrections @corrections ||= SpellChecker.new(dictionary: class_names).correct(class_name).map(&:full_name) end def class_names scopes.flat_map do |scope| scope.constants.map do |c| ClassName.new(c, scope == Object ? "" : "#{scope}::") end end end def scopes @scopes ||= @receiver.to_s.split("::").inject([Object]) do |_scopes, scope| _scopes << _scopes.last.const_get(scope) end.uniq end class ClassName < SimpleDelegator attr :namespace def initialize(name, namespace = '') super(name) @namespace = namespace end def full_name self.class.new("#{namespace}#{__getobj__}") end end private_constant :ClassName end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
did_you_mean-1.2.0 | lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb |