guard / guard-zeus

Guard::Zeus automatically starts and stops Zeus, and, through Guard, runs your tests when your files change.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Guard::Zeus

Guard::Zeus automatically starts and stops Zeus.

Build Status Code Climate

Install

Please be sure to have Guard and Zeus installed before continuing.

Install the gem:

$ gem install guard-zeus

Add it to your Gemfile (inside development group):

gem 'guard-zeus'

Add guard definition to your Guardfile by running this command:

$ guard init zeus

Usage

Please read Guard usage doc

Guardfile

Please read Guard doc for more information about the Guardfile DSL.

Options

Available options:

:rspec => false          # Don't use RSpec
:test_unit => false      # Don't use Test::Unit
:bundler => false        # Don't use "bundle exec"
:cli => '--time'         # Pass options to zeus. `zeus commands` for more zeus options
:run_all => true         # Run all tests when hitting enter in guard

Known Issues

Use with pry

There is a known issue when using guard-zeus with pry, notably the zeus output appear on top of the pry console.

The workaround is to add the cli setting in your Guardfile, e.g.

guard 'zeus', cli: '> /dev/null' do

Lingering zeus process

If you have issues with zeus lingering around after exiting guard, you can add the following to the top of your Guardfile.

at_exit {exec('pkill -f zeus')}

Development

Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change you make.

Authors

Based on the awesome guard-spin. Original authors include:

Ported to use zeus by:

Many Thanks To

Alternatives

About

Guard::Zeus automatically starts and stops Zeus, and, through Guard, runs your tests when your files change.

License:MIT License


Languages

Language:Ruby 100.0%