Basic IRB history support. This is based on the tips from wiki.rubygarden.org/Ruby/page/show/Irb/TipsAndTricks
# File lib/wirble.rb, line 115 def initialize(opt = nil) @opt = DEFAULTS.merge(opt || {}) return unless defined? Readline::HISTORY load_history Kernel.at_exit { save_history } end