To run Rails with Thin server I usually add thin
gem to Gemfile
, then I run bundle install
, and then restart my development server.
But now it's not working, how can I debug this behaviour?
I mean this with not working:
=> Booting WEBrick
=> Rails 3.1.3 application starting in development on http://0.0.0.0:3001
=> Call with -d to detach
=> Ctrl-C to shutdown server
I am using Zeus
gem, can this be related? I restarted zeus
server.
It was a problem with my Rails version, updated to 3.2.13
and now it works, maybe the problem was other, but that update fixed the issue.