Adding rails autotest to your mac is simple (works for shoulda too!)
gem install ZenTest gem install autotest-rails gem install redgreen
next, create a file ~/.autotest with the following in it
require “redgreen/autotest” require “autotest/growl” require “autotest/fsevent”
and you’re done. Next just run autotest inside the app folder you’re working on and your good to go, with growl notifications and all!
Enjoy
Adding rails autotest to your mac is simple (works for shoulda too!)
gem install ZenTest
gem install autotest-rails
gem install redgreen
next, create a file ~/.autotest with the following in it
require “redgreen/autotest”
require “autotest/growl”
require “autotest/fsevent”
and you’re done. Next just run autotest inside the app folder you’re working on and your good to go, with growl notifications and all!
Enjoy