Make irb Do Tab Completion
I was missing readline. The sadness. Thanks to these guys, i fixed it. Here’s how to do it on FC5:
sudo yum install ncurses-devel readline-devel
cd ruby-1.8.4/ext/readline
ruby extconf.rb
make
sudo make install
I was missing readline. The sadness. Thanks to these guys, i fixed it. Here’s how to do it on FC5:
sudo yum install ncurses-devel readline-devel
cd ruby-1.8.4/ext/readline
ruby extconf.rb
make
sudo make install
Hank
July 5, 2006 at 5:03 PM
Also works on Ubuntu Dapper with these small modifications:
<typo:code>
sudo apt-get install libncurses5-dev libreadline5-dev
</typo:code>