Its all about Ruby On Rails
Archive for December, 2006
Plugin: Exception Notifier; Get detail information of exceptions occurred on the live server right on your inbox.
Dec 28th
I don’t know whether you guys are aware of Exception Notifier plugin written by Jamis Buck or not. If you don’t then I would like to share this with you.
- the sender address of the email
- the recipient addresses
- the text used to prefix the subject line
The email includes information about the current request, session, and environment, and also gives a backtrace of the exception.
I am using this plugin and found it very useful, and suggest you to use it.
You can get this plugin from http://dev.rubyonrails.org/svn/rails/plugins/exception_notification/
Most awaited moment…
Dec 17th
Tomorrow will be the our first working day in our new office at Gurgaon. We were planing to move since last year, but due to some reason we couldn’t. Now we are finally moving to our new office
. Now we have enough space to hire people. If you are looking for a job/change or want to work on cutting edge web technology (Spec. Ruby on Rails), send me your resume at akhil at vinsol.com so that i can forward it for further considerations. If you don’t know ruby/rails no probs at all, Freshers OK.
Cheers…
Accessing session data using session_id
Dec 8th
This is the very rare case but some times we need to access the data stored in session through session_id(specially when the request is not coming from browser). Here is a way I found and like to share:
@user=CGI::Session::ActiveRecordStore::Session.find_by_session_id(@session_id).data[:user]