First time with Ruby - how to print "Hello World!" via web-server

On Wed, Sep 28, 2011 at 10:09 AM, – – [email protected] wrote:

The closest “answer” I could find was that unlike HTML/PHP, Ruby needs a
specific file structure (controllers, models, views) but still - neither
of the 30+ tutorials I’ve browsed through tells me:

  • How many files exactly do I require for a simple “Hello World!”?

You should google for tutorials on installing ruby and rails on your
computer and then how to create a rails project via the console using
the
‘rails new’ command. This command creates an app structure and then
probably
such a tutorial will show you how to render a page, or better, show you
how
to create a simple CRUD model.

So your steps are:

  1. Install ruby and rails locally
  2. Genearate a project: ‘rails new myproject’
  3. Create some content
  4. Deploy somewhere. I recommend you use Heroku as it will be the
    simplest
    way for you to get something on the web.

http://www.sinatrarb.com/ → If you’re looking for a Hello World
application
with Ruby (independent from Rails)

On Wed, Sep 28, 2011 at 11:27 AM, Danaka K.