Alphabetize schema.rb columns
I wrote previously about automated testing of database rollback scripts in rails. After running the rollback scripts, we verify our database schema by compar...
I wrote previously about automated testing of database rollback scripts in rails. After running the rollback scripts, we verify our database schema by compar...
A short build time is a critical element of continuous integration. I’ve been involved in a number of build improvements on my current project (both local an...
We ran into an interesting gotcha on our project the other day. We use serialize on ActiveRecord to save ruby objects to the database. This is described in J...
On my current project, we noticed common pattern when dealing with nil. We would often check an object to see if it was nil before calling a method on that o...
On my current project, we wanted to write some code to load a specific user’s session data (not the current user). This turned out to be a little trickier th...