> wether I use IDE or Text Editor You can use any text editor to develop Rails. Sublime text 2 is a very popular one whose evaluation version is free.
>when I create a new app then I keep on typing code it self..or... using >command to install some gem,bundle...related to the app.... For installing all the dependencies, you can run bundle install. This looks at the GemFile and resolves all the dependecies for you. the GemFile has a list of all the gems that your application needs. The rails command line can be used to autogenerate a lot of code (controllers, views actions) etc. A good idea would be to watch railscasts ( http://railscasts.com/) to get started. Thanks, GR _______________________________________________ ILUGC Mailing List: http://www.ae.iitm.ac.in/mailman/listinfo/ilugc ILUGC Mailing List Guidelines: http://ilugc.in/mailinglist-guidelines
