Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CTRL+C to Webbrick server ignored

In the past, I could exit my rails application launched using webbrick using CtrlC. At some point in development, this functionality broke ( CtrlC does nothing now). I'm lead to believe this was caused by changes in one of my gem dependencies, as the problem is also present when checking out a really old version of the application, using the current gemset.

My question is: how can I fix this problem, or at least find the out what is causing it?

like image 846
drewrobb Avatar asked Apr 18 '11 20:04

drewrobb


1 Answers

For windows users, this was broken in more recent builds of rails (3.2+). Try using

ruby script\rails server

instead. More details here.

like image 186
lambinator Avatar answered Oct 08 '22 16:10

lambinator