History not saving
Why is my irb history no longer saving?开发者_如何转开发
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
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"
精彩评论