···11+require "irb/ext/save-history"
22+33+module IRB
44+ module HistorySavingAbility
55+ alias_method :old_save_history, :save_history
66+77+ def save_history
88+ old_save_history
99+1010+ rescue Errno::ENOENT
1111+ # ignore write failure, we may be running as an unprivileged user
1212+ end
1313+ end
1414+end