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:
:port
is the port number to pass tozeus server
. Defaults to3000
.:command
is the zeus command to run. Defaults toserver
.
- 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