There is a newer version of this article updated for Rails 3
To some people Rails have a fairly high learning curve. And certainly, it’s somewhat higher than, say, PHP. However, in the longer run learning Rails definitely pays off.
This is a step by step tutorial to getting over the first hurdle: Creating a “hello world” application in Ruby on Rails.
It works in Rails 1.0 assuming you have ruby and rails already installed and working on your system:
rails hellocd helloruby script\generate controller helloruby script\serverPS: http://localhost:3000/ is a lot prettier “Hello world”-ish page.
Thanks for the mini tutorial - very succinct! Thanks!