# File lib/guard/rspec/runner.rb, line 32 def run(paths, options = {}) return false if paths.empty? message = options[:message] || "Running: #{paths.join(' ')}" UI.info(message, :reset => true) options = @options.merge(options) if drb_used? run_via_drb(paths, options) else run_via_shell(paths, options) end end