Skip to content

Instantly share code, notes, and snippets.

@joshdvir
Created July 31, 2011 11:48
Show Gist options
  • Save joshdvir/1116728 to your computer and use it in GitHub Desktop.
Save joshdvir/1116728 to your computer and use it in GitHub Desktop.
How to install Guard + Guard Cucumber + Guard Spork

First let's install Guard: https://github.com/guard/guard

gem install guard

guard init

On Mac OS X

gem install rb-fsevent

gem install growl

On Linux

gem install rb-inotify

gem install libnotify

Next We install Guard Cucumber: https://github.com/guard/guard-cucumber

gem install guard-cucumber

guard init cucumber

Next We install Guard Rspec: https://github.com/guard/guard-rspec

gem install guard-rspec

guard init rspec

Next we install the Gurad Spork: https://github.com/guard/guard-spork

gem install guard-spork

guard init spork

That's all you need to start the guard's generators take care of the initial configuration.

You can find a list of available guards here: https://github.com/guard/guard/wiki/List-of-available-Guards

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment