When I run rspec in Rails, it seems that a ruby process is created and loaded with rails components due to the statement require 'spec_helper'. This usually takes a while to run even a single spec. Does a tool for rspec like rails console exist so that you can run specs continuously without loading everything each time?
autotest actually starts a new process each time when there is a change, and I can still feel the obvious delay. Any idea? Thanks.
_______________________________________________ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users