There is a server written in Ruby called WEBrick. When you run scripts/server, you're starting a WEBrick server for your Rails application. In production environments, WEBrick is generally not used - the most common setup is FastCGI with lighttpd or Apache. WEBrick is strictly for testing, from what I understand. Bill On Thu, 31 Mar 2005 05:24:45 +0900, JZ <spamerom / niet.com> wrote: > Dnia Thu, 31 Mar 2005 01:58:38 +0900, Lothar Scholz napisaa): > > > The CGI adapter for Webware is just a wrapper that passes arguments to > > the Server, nothing that has something to do with CGI and your web > > application run/startup time. Starting Webware takes much more time then > > starting a webrick rails server. > > OK. So what is started after "ruby.exe scripts/server"? It looks like > standalone process of.. Rails? I don't understand it. > > -- > JZ > > -- $stdout.sync = true "Just another Ruby hacker.".each_byte do |b| ('a'..'z').step do|c|print c+"\b";sleep 0.007 end;print b.chr end; print "\n"