2016-09-26 18:00:45 +02:00
|
|
|
module Homebrew
|
|
|
|
module_function
|
|
|
|
|
|
|
|
def method_missing(method, *args, &block)
|
|
|
|
if instance_methods.include?(method)
|
2018-01-09 19:52:34 +00:00
|
|
|
odisabled "#{self}##{method}", "'module_function' or 'def self.#{method}' to convert it to a class method"
|
2016-09-26 18:00:45 +02:00
|
|
|
end
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def respond_to_missing?(method, include_private = false)
|
|
|
|
return true if method_defined?(method)
|
|
|
|
super(method, include_private)
|
|
|
|
end
|
|
|
|
end
|