Tutorials



Deploying a Ruby application - Apache - Passenger Library
This guide teaches you how you can deploy your app to a server. This guide assumes that you have already done the following, and that you know how to do them:Passenger and Apache are already installed on the server.You have already transferred the...







Defining gem dependencies in single file Ruby scripts
Sometimes I come across cases where I need to write a simple script which uses a gem. The simplest way to go about this is to gem install gem-name and then require 'gem-name' in your script. However, this means that you need to remember to install...