Reputation: 563
Hello,
I installed Ruby 1.9.3 and Rails (rubygems-1.8.24) successfully on Windows 7.
After creating a project folder on C: drive like this:
c:\rails-projects>
and after trying to create a new project like this:
rails quizzes-on-rails
I get a long menu list about Path.. Now I guess I have to create a Path, but don't how. Any help is appreciated!
Upvotes: 0
Views: 114
Reputation: 10754
Try this command, instead, to create a new rails project with the name quizzes-on-rails
:
rails new quizzes-on-rails
Upvotes: 1