Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to serialize a simple attribute in an ActiveRecord model, and Rails 2.3.4 doesn't like it.

class Shopper
  serialize :tags
end

>> a = Shopper.new
=> <#Shopper...>

>>a.tags = ['aoeu','stnh']
=> ['aoeu','snth']

>> a.save
=> TypeError: class or module required

anyone know what I'm missing?

share|improve this question

1 Answer

up vote 39 down vote accepted

Arf...I thought I could serialize two attributes in one go, but that's not the case:

serialize :tags, :garments   # this is wrong

The second argument is supposed to be the class of the serialized object, so I have to do this:

serialize :tags
serialize :garments

bumsicle.

share|improve this answer
1  
Thanks for this! Would have caused much headache if you hadn't posted. :) – Josiah Kiehl Feb 14 '11 at 18:40
1  
can I upvote the word "bumsicle" alone? That is my new word for the week. – pixelearth Jul 2 '12 at 22:04
Wow. Thanks. facepalm – Mike A Nov 15 '12 at 21:32
whattaaa bummer! – Jasdeep Singh Jan 31 at 22:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.