如何让 ruby 控制台识别控制器和模型中的代码更改
我正在向我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需输入:
这将...重新加载:)
Just type:
This will ... reload :)