I installed rails in windows, is there a command to know what is the version of app server installed in in my rails? What is command?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The version of rails is specified in the gemfile
When you say rails new my_app , it generates an entire project(app, log, config, db etc). A gemfile would also be generate . If you open the gemfile you will be able to find the version of your rails.
You will find something like gem rails , ‘3.2.1’