Reputation: 2088
I am developing a website on rails. I tried to move my project on another machine and start the rails server but the server doesn't start. Instead when I enter the command rails s in terminal it creates various files. Please let me know the steps I should follow to run my project on another machine. I have rails installed there.
Upvotes: 1
Views: 228
Reputation: 1308
sounds like the other machine has rails 2 (instead of 3) installed, where running rails <something>
would generate a new rails app called <something>
Upvotes: 1