历史记录不保存
为什么我的 IRB 历史记录不再保存?
Why is my irb history no longer saving?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
为什么我的 IRB 历史记录不再保存?
Why is my irb history no longer saving?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
事实证明,Ruby 1.8.7 引入了一个错误,不再保证终结器能够运行。
为了解决这个问题,我将以下代码片段添加到我的 .irbrc 文件中:
It turns out that ruby 1.8.7 introduced a bug whereby finalizers are no longer guaranteed to run.
To resolve this, I added the following code snippet to my .irbrc file:
我在 ruby 2.3.7 中也遇到了这个问题。这是由于 rvm ruby 包没有更新默认 .irbrc_history 文件的正确权限引起的。这似乎是一个已知错误。
一个简单的解决方法是更改此历史文件在
~/.irbrc
文件中的位置。I ran into this with ruby 2.3.7 as well. It was caused by rvm ruby package not having the correct permissions to update the default .irbrc_history file. This appears to be a known bug.
An easy work around is to just change the location of this history file in your
~/.irbrc
file.