views:

156

answers:

2

So I have two developer machines, running the same version of Rails and Ruby. One machine has scrollback functionality that survives exit and console restart. The other machine forgets everything on exit. Any idea why this is happening? How can I get a persistent scrollback buffer on my other machine?

A: 

You probably have the wirble gem installed on one machine and not the other.

jdl
I doublechecked, and no wirble gem on either machine.
jeffpatt
A: 

Do you have irb history enabled on one machine and not the other?

http://macdevelopertips.com/ruby/ruby-irb-command-history.html

You may have a ~/.irbrc and a ~/.irb-history file somewhere on the machine that is keeping history.

mczepiel