使用“rails new app -m myfile.rb”找不到 $ 命令
我正在尝试使用 MongoID-通过在 Ubuntu 下执行此操作并使用 RVM 来设计生成器模板:
rails new myapp -m https://github.com/RailsApps/rails3-application-templates/raw/master/rails3-mongoid-devise-template.rb
我还尝试下载文件并在本地进行生成,但在这两种情况下,我得到:
$: command not found
根据指南:应用程序模板,我正确使用命令/选项...
编辑 :
以下命令给出了以下结果:
rails -v --> Rails 3.1.3
ruby -v --> ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-linux]
I'm trying to use the MongoID-Devise generator template by doing this under Ubuntu and using RVM:
rails new myapp -m https://github.com/RailsApps/rails3-application-templates/raw/master/rails3-mongoid-devise-template.rb
I've also tried to download the file and do the generation locally, but in both cases, I get:
$: command not found
As according to the guides: Application Template, I'm using the command/options correctly...
EDIT:
The following commands gives me the following results:
rails -v --> Rails 3.1.3
ruby -v --> ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-linux]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在命令开头看到的“$”实际上是表示 Unix 控制台提示符的约定。不要包含“$”。
The "$" you see at the beginning of the command is actually a convention that indicates a Unix console prompt. Don't include the "$".