When I am working on UI in a rails app, I typically don’t care to read the information in a rails debugger.
Running rails in the background is as easy as:
rails s -d
Quitting the process is slightly tricker than the good ol fashion cmd-c
kill -9 $(cat tmp/pids/server.pid)