The technique we used was quite a hack as this is something that ActiveRecord wasn’t designed to do but now in Rails 3.0 we have a new feature Read More

The technique we used was quite a hack as this is something that ActiveRecord wasn’t designed to do but now in Rails 3.0 we have a new feature Read More
deploy rails website with passenger -rails deployment, configure a VirtualHost, restart the webserver and there you go, everything should work as expected Read More
Ruby is very powerful object oriented language. new Ruby performance improvement. Working with pure Ruby is really fun and interesting to me. I am real fan of Ruby Read More
working on Ruby on Rails, daily inventing new things, trying new things and contributing to ROR community. News Ruby on Rails 3.0 released with new features Read More
Nginx famous now. We given information for how to host multiple rails site on Nginx. we given the configuration code along with their detailed information. Read More
Every time we need this migration script for our projects Use following command for Model generate [siwan@localhost siwan]$ ruby script/generate model UsStates exists app/models/ exists test/unit/ exists test/fixtures/ Read More
Use following code for setting up Nginx for rails. Read More
Installation of Apatana in Detail 1. Download zip file from this location(http://www.aptana.com/studio/download) File name:Aptana_Studio_Setup_Linux_1.2.7.zip 2. Then uncompress the .zip file. and copy the resulting ‘aptana’ folder under ‘/home/siwan’.(siwan Read More
To install memcached server on linux/fedora box yum install memcached Find help for memcached commands and option memcached -help Start memcached server(11211 is default port Number for memcached Read More
// Reconstruct a date object from date_select helper form params // place this code into your application.rb file def build_date_from_params(field_name, params) Date.new(params["#{field_name.to_s}(1i)"].to_i, params["#{field_name.to_s}(2i)"].to_i, params["#{field_name.to_s}(3i)"].to_i) end //You can changes Read More