# File lib/guard/rspec.rb, line 34
    def run_all
      passed = @runner.run(options[:spec_paths], options.merge(options[:run_all] || {}).merge(:message => "Running all specs"))

      @last_failed = !passed
      if passed
        @failed_paths = []
      else
        throw :task_has_failed
      end
    end