1

Any recommendations for which server is the best to use for RubyMine debugging?

  • Webrick works correctly, but is slow to start.
  • Unicorn starts quickly, but the debugger doesn't work as the session quickly times out. better_errors gem doesn't play well with unicorn.

Any others to try?

UPDATE

  • Thin seems to work great
justingordon
  • 12,553
  • 12
  • 72
  • 116
  • See the [related question](http://stackoverflow.com/questions/4535220/recommended-development-web-server-for-ruby-on-rails-3). AFAIK, Unicorn is not compatible with Windows. – CrazyCoder Mar 10 '13 at 23:46

1 Answers1

0

Full disclaimer, I installed rubymine today, and know very little about it... BUT, I did just read this about rubymine, unicorn, and timeouts which may help: Run/Debug Configuration: Rails

tl;dr:

if ENV['IDE_PROCESS_DISPATCHER']
    timeout 30 * 60 * 60 * 24
end
Pat Newell
  • 2,219
  • 2
  • 18
  • 23