# File lib/slop.rb, line 268
  def method_missing(method, *args, &block)
    meth = method.to_s
    if meth.end_with?('?')
      present?(meth.chop)
    else
      super
    end
  end