历史记录不保存

发布于 2024-08-11 07:19:25 字数 26 浏览 3 评论 0原文

为什么我的 IRB 历史记录不再保存?

Why is my irb history no longer saving?

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

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

发布评论

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

评论(2

救星 2024-08-18 07:19:25

事实证明,Ruby 1.8.7 引入了一个错误,不再保证终结器能够运行。

为了解决这个问题,我将以下代码片段添加到我的 .irbrc 文件中:

require 'irb/ext/save-history'

Kernel.at_exit do
  IRB::HistorySavingAbility.create_finalizer.call(IRB.CurrentContext.instance_variable_get(:@io).send(:binding))
end

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:

require 'irb/ext/save-history'

Kernel.at_exit do
  IRB::HistorySavingAbility.create_finalizer.call(IRB.CurrentContext.instance_variable_get(:@io).send(:binding))
end
美男兮 2024-08-18 07:19:25

我在 ruby​​ 2.3.7 中也遇到了这个问题。这是由于 rvm ruby​​ 包没有更新默认 .irbrc_history 文件的正确权限引起的。这似乎是一个已知错误

一个简单的解决方法是更改​​此历史文件在 ~/.irbrc 文件中的位置。

IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb_history"

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.

IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb_history"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文