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, include_private = false)
def respond_to_missing?(method, include_private = false) method.to_s.ends_with? '?' end