Starts/stops/restarts your rails server via zeus.
Add this line to your application's Gemfile:
gem 'guard-zeus_server'
And then execute:
$ bundle
Or install it yourself as:
$ gem install guard-zeus_server
Run:
$ guard init zeus_server
Modify the Guardfile to your heart's content.
Options:
:portis the port number to pass tozeus server. Defaults to3000.:commandis the zeus command to run. Defaults toserver.:run_without_bundler-- defaults to false. set it to true if you are running guard inside bundler, but you don't want to run zeus inside bundler.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request