Rails 1.1, acts_as_taggable gem, and Desko

I’ve upgraded Desko to the new Rails 1.1 and it broke the acts_as_taggable gem. Apparently, find_tagged_with calls the Rails method add_limit! which has changed. The great thing about the change is that the RDocs haven’t. The problem is that add_limit! now takes 3 arguements instead of 2. The extra one is now scope. To temporarily patch the problem I made acts_as_taggable pass in nil as the 3rd arguement to add_limit!.

More good news is that I still haven’t gotten AJAX file uploading working. I’ve gotten Kyle Maxwell’s form_remote_tag libraries working so the form is displayed right at least. The problem now is that it doesn’t upload and doesn’t render anything new to the view. I’ll get it eventually.

Comments are closed.