I have an ActiveRecord result of a find operation:
tasks_records = TaskStoreStatus.find( :all, :select => \"task_id, store_name, store_region\", :co
May be?
result.map(&:attributes)
If you need symbols keys:
result.map { |r| r.attributes.symbolize_keys }