Currently i have web and websocket servers running in the same process. My question is how can i start web server without actioncable server but still be able to broadcast messages to clients of actioncable server in separate process?
In Rails5 beta to use action cable i was doing this mount ActionCable.server => '/cable'
and simply removing this line i was able to achive exactly what i wanted.
But now it's mounted automaticaly...
I have tried '-C' commandline option with no luck.