Archive for the 'Ruby' Category

All Around Update

April 15th, 2008

Time to update all the strings of this rope…
Phusion Passenger (mod_rails)
I installed the gem and went ahead to install the apache module but their setup script will not find my Apache2 installation. This is on Ubuntu 7.10 and my binary is called apache2 rather than httpd, though I’m not sure if this is the direct […]

Phusion Passenger (mod_rails): finally a good Apache module

March 27th, 2008

Head over to modrails.com and you’ll be greeted with a screencast of how fast and easily you can set up mod_rails. I’ve always hated the idea of having to run a cluster of mongrels for each rails application I want to deploy. It’s also prohibited on most hosts due to a need to manage the […]

How to fix script/console readline errors with Ruby on Rails and Feisty

September 24th, 2007

Fixing Console Readline Issue (”no such file to load — readline”)
$ sudo apt-get install libncurses5-dev libreadline5-dev
$ sudo updatedb
$ slocate ext/ |grep ext/readline
$ cd ext/readline
$ sudo ruby extconf.rb
$ sudo make
$ sudo make install