Here’s a quick tip if you’re getting errors like this one in your Rails application:
/usr/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session/active_record_store.rb:84: [BUG] Segmentation fault
The most probable reason you’re getting the Segmentation fault and your server crashes is because you’re trying to store too much data in sessions table of your application (I assume you are using active_record_store as a session store).
The [...]
Archive for February, 2008
Rails active_record_store & Segmentation fault
Ruby On Rails Security Guide
Ruby on Rails does a decent job in handling security concerns in the background. You will have to configure your application to avoid few security attacks while plugins would be required for many security concerns which are not at all or poorly managed by rails.
Authentication
Authentication is the foremost requirement of most of the web applications [...]
Reading An Excel File With Ruby
This tutorial will cover how to read (or parse) an excel file with ruby. Here’s how you can do the same thing.
Installing Parseexcel
Parseexcel is a ruby port of the perl parseexcel module.
It’s installable via a nice gem like so:
gem install parseexcel
That’s that, now remember since it’s a gem library we have to tell our [...]
10-Minute Quick Start Guide for Facebooker – Create a Facebook App Using Rails in 7 Easy Steps
Here I found a gr8 post by Gerald Bauer (RailsAdvance), Thanks for gr8 post.
Welcome to the 10-Minute Quick Start Guide for Facebooker showing you how to create a Facebook application from scratch using Ruby on Rails in 7 easy steps:
Create a Rails application
Install the Facebooker Rails plugin
Log on to Facebook and set up a [...]

