From: Michael Neumann Date: 2005-01-27T21:40:53+09:00 Subject: Re: [ANN] Wee 0.5.0 Ezra Zygmuntowicz wrote: > Michael- > Can you explain once more how to start a web app up after gem > installing wee? What am I supposed to do next? I'm not entirely sure > about how to proceed but I would like to check wee out. Okay, if you have put the example I gave in my announce post into file "hello.rb", then you start it like this: ruby -rubygems hello.rb Alternatively, set the RUBYOPT environment variable to -rubygems: export RUBYOPT=-rubygems Or for csh: setenv RUBYOPT -rubygems Then you can start hello.rb like this: ruby hello.rb The third way is to simply put this line require 'rubygems' at the top of hello.rb. Now you can start it like any other Ruby file (this should easily work on windows too). Hope this helps! Regards, Michael