smart stuff
Rails: Clean your temporary files
17 Nov 05 -
http://www.approximity.com/cgi-bin/blogtariAgile/index.rb/Ruby/Rails/rails_clean_Sessions.rdoc
To get rid of all old sessions I addeded this to my hourly crontab job.
/usr/bin/find /tmp/ -name "ruby_sess*" -cmin +600 -exec rm \{} \;