Ruby developer, API Integration and Scraping Expert
An entrepreneur, developer, photographer and a perfectionist.
"I am from Jaipur, India. I am a part of the Springboards Programme, 2012, whence I love to code little devils in Ruby."
Bootstrapping My Rails Application
This post details my starting steps with a new Rails
project, and is only kept here to remind me of various tasks that I,
generally, like to do at this time. Many of these steps might be redundant or
even, obsolete by the time you lay yours eyes on this post :)
rails generate controller home index
rm -rf public/index.html
find . -type f -iname "*.erb" -delete # remove all erb files since we are using haml# add 'root :to => "Home#index"' in config/routes.rb