class Mime::NullType

def method_missing(method, *args)

def method_missing(method, *args)
  false if method.to_s.ends_with? "?"
end

def nil?

def nil?
  true
end

def ref; end

def ref; end

def respond_to_missing?(method, _)

def respond_to_missing?(method, _)
  method.to_s.ends_with? "?"
end