This was long lost post I had written about 8 months ago (converted from wiki to HTML - so pardon typos if any) Terminologies Capistrano is a ruby gem which helps in remote deployment. As against widely known convention, Capistrano can be used for any deployment, not just a rails app! Nginx is a web-proxy … Continue reading Capistrano + Nginx + Thin deployment on Linode
Category: Ruby on Rails
Cucumber Configuration with Radiant
Configuring cucumber with Radiant Application: The command > ruby script/generate cucumber does not succeed in case of Radiant application. Issues encountered: The command >ruby script/generate cucumber cannot be executed. It gives error “Couldn’t find ‘cucumber’ generator” Possible reason & solution: Seems that this is because Radiant Application does not use generator and looks for generators … Continue reading Cucumber Configuration with Radiant
Moving from backgrounDrb to DelayedJob
In my earlier post regarding DelayedJob setup I mentioned how to setup DelayedJob and create news tasks in your existing code. This post provides details of how to move from backgrounDrb to delayed_job. First of all its important to know why ? - BackgroundDrb takes in a lot of memory. It spawns worker at start-up. … Continue reading Moving from backgrounDrb to DelayedJob
