Make logic more confusing

This commit is contained in:
Ryan Fitzgerald 2012-09-08 20:56:51 -07:00
parent 6aa27e2b19
commit a613c26a6f
1 changed files with 3 additions and 10 deletions

View File

@ -10,12 +10,7 @@ module ::Guard
def run_spec(path)
if File.exists?(path)
success = system "bundle exec bacon -Itest -q #{path}"
if !success
@any_failed = true
end
@success &&= system "bundle exec bacon -Itest -q #{path}"
puts
end
end
@ -25,16 +20,14 @@ module ::Guard
end
def run_on_changes(paths)
@any_failed = false
@success = true
paths.delete(:all)
paths.each do |path|
file_changed(path)
end
if !@any_failed
run_all
end
run_all if @success
end
end
end