I run the Thin webserver for basically every app in my dev/test environments. When I used Mongrel with Rails 2.x, all I had to type was script/server to get it to run the webserver I choose. But with Rails 3, I have to specify Thin every time. Is there a way to get Thin running on my Rails apps by just typing rails s instead of rails s thin?
|
|
|||
|
|
|
As of Rails 3.2rc2, thin is now run by default on invoking Works great for me. |
|||
|
|
|
Yeah it's possible to do this. The way the
We insert our patch right before the
Notice that it will now try Mongrel and if there is an error try for Thin and only then go with Webrick. Now when you type |
|||
|
|
|
Simply install thin, cd to the directory that your app is in and run thin start. Works perfectly here. :) You can use http://www.softiesonrails.com/2008/4/27/using-thin-instead-of-mongrel to change as needed. (Its the one I used) |
|||
|
In
|
|||
|
|