# File lib/guard/rspec.rb, line 11 def initialize(watchers = [], options = {}) super @options = { :focus_on_failed => false, :all_after_pass => true, :all_on_start => true, :keep_failed => true, :spec_paths => ["spec"], :run_all => {} }.merge(options) @last_failed = false @failed_paths = [] @inspector = Inspector.new(@options) @runner = Runner.new(@options) end