jviney / acts_as_taggable_on_steroids

Tagging for Ruby on Rails

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tag_counts overwrites standard find() method

seven1m opened this issue · comments

Line 139 of acts_as_taggable.rb calls scope(:find) which overwrites the standard find method in Rails 3, causing all subsequent calls to find() on that model to return a scope (relation).

I'm not familiar enough with the code to know what the scope call is supposed to be doing -- otherwise I'd submit a patch.

Did you find a fix? I still have the same problem.

I just commented it out, since it seemed unnecessary for my purposes: seven1m/onebody@8ca3adb

Closing this issue as I no longer use this fork.

My fork is here and works ok for me on Rails 4.x.