The :conditions option gets plugged into a sql statement, so you can
use whatever facilities your database provides for that sort of
thing. In PostgreSQL, I'd do something like:
:conditions => ["trim(both ' ' from MyColumn) = ?", someValue]
Peace, Phillip