fazibear/frubby

View on GitHub
lib/frubby/respond_to_missing.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Frubby
  module RespondToMissing
    
    EXCLUDED_RESPOND_TOS = %i[
      begin
      end
      path
      to_ary
      to_io
      to_hash
      to_str
    ]
   
    KERNEL_METHODS = Kernel.methods.delete_if {|m| m.match /^[A-Z]/}

    def respond_to_missing?(method_name, include_private = false)
      return super if EXCLUDED_RESPOND_TOS.include? method_name.to_sym

      _methods = KERNEL_METHODS + methods
      _method = FuzzyMatch.new(_methods).find(method_name.to_sym)
      
      warn "[frubby] respond_to_missing: #{method_name} ~> #{_method}" if $DEBUG

      _method.is_a?(Symbol) ? true : super
    end
  end
end