Avoiding "ruby script/server" and eliminating ":3000"

Is there a way to avoid having to type ruby script/server to test my
site?

Is there a way to eliminate :3000 from http://localhost:3000/

2008/10/15 Delirium tremens [email protected]:

Is there a way to avoid having to type ruby script/server to test my
site?

U can use Phusion Passenger to run in development instead of Webrick or
Mongrel.
Using the “RailsEnv” statement pointing to development in the virtual
host definition.

cheers

Create an alias like so in your .bash_profile or wherever:

alias rss=‘ruby script/server --port:80’

HTH,

-Roy