Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个奇怪的问题。当我做 rails new ~ 时,它创建的所有文件都会将它们放在我在 OSX 的根目录中。即使我指定在不同的目录中启动,它也总是将其全部放在那里。我究竟做错了什么?
谢谢
你是在字面上输入:
rails new ~ whatever
rails 命令的用法如下: rails new APP_PATH [options]
所以在我看来,你正试图在你的主目录中创建一个新的 rails 应用程序。尝试:
rails new whatever