Webrick is the default web server that runs when you type rails server. When you're running it in development mode, it will reload any code changes that you might happen to make on each request, but it won't be able to pick up changes to configuration files and Ruby gems that are loaded only at server startup time. Furthermore, if you're just learning Ruby / Rails, you're going to make a lot of mistakes, and having the web server console output to refer to whenever something blows up is going to be useful. Having your server running in the background is going to take all that away from you.
When I'm working on a project, I keep a server up and running in its own terminal window pretty much all the time and restart it whenever I need to pick up a configuration change. On Thu, Aug 4, 2011 at 11:07 AM, Sayuj Othayoth <[email protected]>wrote: > hey Rubyist, those are web servers. You need to configure the web server. > - > sayuj > > > On Thu, Aug 4, 2011 at 12:28 PM, Rubyist Rohit <[email protected]>wrote: > >> Is this a command that I have to type in the command prompt? I am using >> Windows 7. >> >> -- >> Posted via http://www.ruby-forum.com/. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]. >> For more options, visit this group at >> http://groups.google.com/group/rubyonrails-talk?hl=en. >> >> > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

