Rails c 启动控制台在 Linux 上的 Rails 3 中停止工作?
我不确定我做了什么,但现在启动控制台的“rails c”不起作用......我该怎么做才能恢复它?
它的作用是在目录“c”中创建一个 Rails 应用程序...:(
I'm not sure what I did, but now 'rails c' to launch console doesn't work....what can I do to restore that?
What it does is it creates a rails app in directory "c"... :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我用
用于rails2的
脚本/控制台。
Rails3 的 script/rails console
我还设置了一个适合它们的别名 ssc 和 src...
I use
script/console.
for rails2script/rails console
for rails3I also set up an aliases fit them as ssc and src...
您安装了 Rails 2.3,并且旧的
rails
命令会覆盖 Rails 3 中的命令。bundle execrails c
应该可以工作。要卸载 Rails 2.3,请运行
(当然,如果这是您想要的)
You have Rails 2.3 installed, and the old
rails
command overrides the command from Rails 3.bundle exec rails c
should work.To uninstall Rails 2.3, run
(if that's what you want, of course)