Rails c 启动控制台在 Linux 上的 Rails 3 中停止工作?

发布于 2024-12-11 22:03:51 字数 97 浏览 0 评论 0原文

我不确定我做了什么,但现在启动控制台的“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

贪了杯 2024-12-18 22:03:51

我用
用于rails2的脚本/控制台。
Rails3 的 script/rails console

我还设置了一个适合它们的别名 ssc 和 src...

I use
script/console. for rails2
script/rails console for rails3

I also set up an aliases fit them as ssc and src...

裂开嘴轻声笑有多痛 2024-12-18 22:03:51

您安装了 Rails 2.3,并且旧的 rails 命令会覆盖 Rails 3 中的命令。

bundle execrails c 应该可以工作。

要卸载 Rails 2.3,请运行

gem uninstall rails --version '<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

gem uninstall rails --version '<3'

(if that's what you want, of course)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文