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:
- Install ruby and rails locally
- Genearate a project: ‘rails new myproject’
- Create some content
- Deploy somewhere. I recommend you use Heroku as it will be the
simplest
way for you to get something on the web.