如何让 ruby​​ 控制台识别控制器和模型中的代码更改

发布于 2024-10-16 01:58:16 字数 347 浏览 2 评论 0原文

我正在向我的 ruby​​ 模型添加新功能,并通过 ruby​​ 控制台对其进行测试。我发现每次更改模型中的任何内容都必须重新启动控制台非常烦人。有没有办法让 ruby​​ 控制台不缓存或检查更新的代码而不重新启动它?

例如,我正在模型中创建一个新方法,在进行更改后,我必须重新启动控制台并运行一些命令来再次加载所有内容。请参见下文:

script/console
require 'some_gem'
r = Region.find_by_name("some_region")
r.some_method

如果我更改区域模型中 high_x 方法中的一行,我必须重复所有步骤才能看到我的更改。

I'm adding new functionality to my ruby model and testing it through the ruby console as I go. I find it very annoying to have to restart the console everytime I change anything in the model. Is there a way to have the ruby console not cache or have it check for updated code without restarting it?

For example, I'm making a new method in the model, and after I make a change, I have to restart the console and run a few commands to load everything back up again. See below:

script/console
require 'some_gem'
r = Region.find_by_name("some_region")
r.some_method

If I change a line in the high_x method from the region model, I have to repeat all of the steps to see my change.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情话已封尘 2024-10-23 01:58:16

只需输入:

reload!

这将...重新加载:)

Just type:

reload!

This will ... reload :)

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