Archive for the ‘Ruby On Rails’ Category

Easiest way to Install Passenger in Ubuntu: Open a terminal, and type: gem install passenger Type: passenger-install-apache2-module And follow the instructions During the installation procedure the installer package will prompt for any additional gems to be installed if necessary. Deploying Rails Application to a Apache Virtual host Add a virtual host entry to your Apache [...]

This post describes how to create a basic web application in Rails using only console tools and a text editor. The instructions work pretty much the same for all operating systems with little to no modifications. Make sure that you have the latest versions of all components installed: # ruby -v && gem -v && [...]

This is what I did to get Ruby and Rails working on my new Ubuntu 9.04. It appears that nothing really changed from previous version. The basic step is to install the Ruby using apt-get and installing the Gem from the source. I learned my lesson NOT to install Ruby from the source on Ubuntu. [...]