Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

rails s

command creating new project inside project directory instead of starting server.

I installed rails in my system but it is showing unexpected behavior, as creating project instead of starting server.

I see in my system by running gem list | grep rails command it shows rails 3.2.11 but when I see using rails -v then it shows rails 2.3.11

SO on running rails s it picks rails 2

share|improve this question

3 Answers

Please check Your version of rails. It is definitely < 3.

So use ruby script/server instead of rails s.

share|improve this answer
1  
ooops :O sorry my bad – Taimoor Changaiz Jan 22 at 7:13
This did not worked, as I see in my system by running gem list | grep rails command it shows rails 3.2.11 but when I see using rails -v then it shows rails 2.3.11 – Taimoor Changaiz Jan 22 at 7:25
you are searching through gem file. but actual version set to rails 2.3.11 because of which above command not works – Babasaheb Gosavi Jan 22 at 7:28

You will be running the first version of rails that is found in your PATH. You can always change your path environment variable so it finds rails 3.2.11 first, but if you are trying to manage several versions of rails/ruby on your system I recommend you use rvm or rbenv.

share|improve this answer
up vote 0 down vote accepted

Thanks @Gosavi and @boulder

Your solutions are also worthy, but my prbolem was resolved doing this

My app was poiniting to default gemset so I created new gemset for my app

To create new gemset

rvm --rvmrc --create 1.9.3@project_name

To list avaliable gemsets:

rvm gemset list
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.