Ruby on rails – Beginning

I’ve started learning ruby on rails. Will share some useful stuffs on that too. To start with, here’s one.

To specify the root of your rails app, you might specify a default root in routes.rb file. Like,

map.root = :controller => ‘some_controller’, :action => “index”

But still you don’t see what you wanted to see?? Still seeing the Welcome aboard page??

Do not forget to remove the index.html file in public directory. 🙂

Leave a comment