Forgive me as I\'m new to both *nix and ruby on rails. My rails command always creates a new application and I can\'t figure out why. Running \"rails new myApp\" will just gen
That sounds like the behavior of Rails 2, not Rails 3. With Rails 2, typing rails appname
would create a new Rails application named appname
. With Rails 3, the syntax is now rails new appname
. You should double-check that you're using the version of Rails that you think you are. To do that, type rails --version
.