Posts

How to find company is register or not ?

Just go to the below link and enter your company name http://mca.gov.in/DCAPortalWeb/dca/MyMCALogin.do?method=setDefaultProperty&mode=31 -

Open source rails projects

http://www.opensourcerails.com/

ruby on rails jobssite

http://www.rubyonjobs.com/

rvm(Ruby version management) guide

RVM guide Please go follow the below url for documentation. http://beginrescueend.com/rvm/basics/

Frequently used Heroku commands

Create project in ror Open git console Change to project directory Enter command heroku create To rename the heroku project , heroku rename < new name > --app <old name> To add project to git repository git init                                                       Note:It should enter at the first time only(no need after every  modification)                                               git add .                                               git commit -m "<comment>"                                               git remote add < name > git@heroku.com :< project name >.git     Note:It should enter at the first time only(no need after every  modification)                                                git push < name > master To clone an existing project from git  git clone git@heroku.com :< project name >.git Before changing database, application should be in maintenance mode                               heroku main...

heroku commands and usages

***********************About heroku ***************************************************************** heroku help                                       # show list of commands with description heroku version                                    # show the gem version of heroku using ***********************User acount comands*********************************************************** heroku login                                      # log in with your heroku credentials heroku logout                                     # clear local authentication credentials ***********************heroku application basic information ***************************************** heroku list                                       # list your apps heroku create [<name>]                            # create a new app heroku info                                       # show app info, like web url and gitrepo heroku open                                       # open the app in a web browser heroku rena...

ssh key generation

ssh-keygen -t rsa -C " your_email@youremail.com "