# File lib/slop.rb, line 280
  def respond_to?(method)
    method = method.to_s
    if method.end_with?('?') && options.any? { |o| o.key == method.chop }
      true
    else
      super
    end
  end