# File lib/enumerated_attribute/integrations/active_record.rb, line 52
                        def attributes
                                atts = super
                                atts.each do |k,v|
                                        if self.class.has_enumerated_attribute?(k)
                                                atts[k] = v.to_sym if v
                                        end
                                end
                                atts
                        end