Module: IRB::HistorySavingAbility

Includes:
Readline
Defined in:
lib/utils/irb.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.create_finalizerObject



538
539
540
541
542
543
544
545
546
547
548
549
550
551
# File 'lib/utils/irb.rb', line 538

def HistorySavingAbility.create_finalizer
  at_exit do
    if num = IRB.conf[:SAVE_HISTORY] and (num = num.to_i) > 0
      if hf = IRB.conf[:HISTORY_FILE]
        file = File.expand_path(hf)
      end
      file = IRB.rc_file("_history") unless file
      open(file, 'w' ) do |f|
        hist = HISTORY.to_a
        f.puts(hist[-num..-1] || hist)
      end
    end
  end
end

.extended(obj) ⇒ Object



553
554
555
556
557
# File 'lib/utils/irb.rb', line 553

def HistorySavingAbility.extended(obj)
  HistorySavingAbility.create_finalizer
  obj.load_history
  obj
end

Instance Method Details

#load_historyObject



559
560
561
562
563
564
565
566
567
# File 'lib/utils/irb.rb', line 559

def load_history
  hist = IRB.conf[:HISTORY_FILE]
  hist = IRB.rc_file("_history") unless hist
  if File.exist?(hist)
    open(hist) do |f|
      f.each {|l| HISTORY << l.chomp}
    end
  end
end