Debugger is choppy with Guard/Spork/Testunit -
i using ruby 1.9.2p318, rails 3.1.3, , following gems:
gem 'debugger' gem 'spork', '~> 0.9.0.rc' gem 'spork-testunit' gem 'guard-spork' when use spork in terminal , run test includes "debugger" line, works fine, , can access debugger prompt in same tab spork launched.
but, when launch spork using bundle exec guard, debugger choppy. it's there no memory available. window @ times unresponsive keyboard , won't respond paste. guardfile includes following spork:
guard 'spork', :test_unit_env => { 'rails_env' => 'test' }, :cucumber_env => { 'rails_env' => 'test' }, :rspec_env => { 'rails_env' => 'test' } watch('config/application.rb') watch('config/environment.rb') watch(%r{^config/environments/.+\.rb$}) watch(%r{^config/initializers/.+\.rb$}) watch('gemfile') watch('gemfile.lock') watch('spec/spec_helper.rb') { :rspec } watch('test/test_helper.rb') { :test_unit } watch(%r{features/support/}) { :cucumber } end has had same experience or know how resolve this? thanks!
Comments
Post a Comment