What if I want to refer to a column of an ActiveRecord object by a different name? for example, I might call:
@posts = Posts.find(:all, :select => "created_on")
But instead of referring to @posts["created_on"], I'd like to refer to it as @posts["date"]. What would you recommend?
Thanks!