rake guard:start
launches Postgres Service if it wasn't active
connects Active Support if connection was dead
invokes Guard
if exited by Ctrl+C doesn't show all stack trace because of trap on INT signal
can be launched with options like so:
rake guard:start -- -h
will show all available options and exit taskrake --trace guard -- -h
to run the above but with trace
rake guard:restart
restarts guard, puma and postgres (don't see any actual usage for this)rake guard
is shortcut forrake guard:start
. can also be called with options in the same way.
rake puma:start
launches Postgres Service if it wasn't active
connects Active Support if connection was dead
launches Puma Server
if exited by Ctrl+C doesn't show all stack trace because of trap on INT signalrake puma:kill
terminates any puma instances on tcp:8080 (port should be changed corresponding to config)rake puma:overkill
kills anything on tcp:8080 (port should be changed corresponding to config)rake puma
corresponding to input will executerake guard:start
orrake puma:start
. can pass options to guard.
rake psql:start
launches Postgres Service if it wasn't active
connects Active Support if connection was deadrake psql:connect
connects Active Support if connection was deadrake psql:restart
restarts Postgres Servicerake psql:stop
stops Postgres Service