DEV Community

Discussion on: What was your TDD aha moment?

 
edisonywh profile image
Edison Yap

Guard is a gem - github.com/guard/guard

It has plugin like guard-rspec.

What Guard does is it watches a number of files and restart your server when needed (changing Gemfile, routes etc).

Guard-Rspec add to that by watching your test files and automatically running them when you save