Aug 27 2006
Mongrel for Flex and Rails development
Most, if not all, all of the tutorials that I have seen about integrating Flex with Rails have used the WEBrick server that is included with Ruby. While there is nothing wrong with using WEBrick for developing small apps on your local machine, I would recommend that most developers use Mongrel, especially if you are developing in a windows environment.
Mongrel (http://mongrel.rubyforge.org/) is going to get you much better performance than the CGI based WEBrick and it is just as easy to use.
To get Mongrel, make sure you have the latest versions of Ruby, Rails, RubyGems installed, then just run gem install mongrel from the command line and then follow the instructions on the screen.
To run Mongrel just go to the rails application that you want to run on the command line and run mongrel_rails start.
That’s it. Just as easy as WEBBrick, and now your running in an environment that could be deployed for small scale apps.
Also, in honor of Zed Shaw’s (the creator of Mongrel) site here is a picture of my mongrel (Eva)
 
