Feeds:
Posts
Comments

Archive for the ‘Ruby on Rails’ Category

Again another module missing. Doing script/console result with the following error message.
/usr/local/lib/ruby/1.8/irb/completion.rb:10:in `require’: no such file to load — readline (LoadError)
You can get away with compiling and installing readline from source without recompiling ruby it self.
1. Go to your ruby source directory then cd into ext/readline

ruby extconf.rb
make
make install

NOTE: If doing ruby extconf.rb bail out with [...]

Read Full Post »

I was fronted with this problem today. I upgraded ruby on my clients UAT last week and ruby-openssl modules wasn’t installed due to missing header files. I recon this would only happen if you install ruby from source. However without openssl build-in, the net/ssh will fail most of the time. But you can easily install [...]

Read Full Post »