Guard::Spinoff
Guard::Spinoff is used to integrate the Spinoff server with Guard.
Installation
Install the gem.
$ gem install guard-spinoff
You can also add it to your Gemfile.
gem 'guard-spinoff'
Initialize or modify a Guardfile by running the following command.
$ guard init spinoff
Configuration
Make sure you set the :runner
and :init
options in your Guardfile.
guard 'spinoff', :runner => :rspec, :init => 'config/spinoff.rb' do
# ...
end
Available runner options: :rspec
, :test\_unit
The :init
option takes the path to the Spinoff initialization file.
Caveats
- No test suite yet!
Credits
Thanks to Jonathan and Andrew Assarattanakul for writing guard-spin which is the base for this gem.