Tag Archives: installation

Install and Serve a Rails Application from PHP Subdirectory Using Apache, Phussion Passenger and Ruby Enterprise Edition

Here is how to install a Rails application out of a subdirectory (rather than as a subdomain) with the Apache web server(Apache2). In this example I’m going to use my own blog which is a Wordpress installation and serve a Rails application from the subdirectory “reader”. Note, I’m not going to keep my Rails application [...]
Posted in Ruby on Rails | Also tagged , , , , , , , , , , , , , , , | 1 Comment

Installing Scala on Mac OS X Leopard

I followed the instructions from here http://arvinderkang.com/2009/09/01/installing-scala-on-snow-leopard/ but I used version 2.7.6 (rather than .5) I installed scala under /usr/local/scala so I had to include it to my path. Type vim .bash_profile export PATH="/usr/local/bin:/usr/local/sbin:/usr/local/scala/scala-2.7.6.final/bin:$PATH" Now to download and install… curl -O http://www.scala-lang.org/downloads/distrib/files/scala-2.7.6.final-installer.jar sudo java -jar scala-2.7.6.final-installer.jar This will launch an installer. Just follow the instructions and when it asks for [...]
Posted in Programming | Also tagged , , , , , | Leave a comment