markbates / mongoid-tags-arent-hard

A tagging gem for Mongoid 3 that doesn't actually suck.
MIT License
16 stars 12 forks source link

raises exception when list of tags contains nil #4

Closed lukebergen closed 11 years ago

lukebergen commented 11 years ago

e.g. model.tags << "1,2,3" #=> fine model.tags << nil #=> raises exception model.tags << ["1", "2", nil, "3"] #=> raises exception