So I'm using acts_as_taggable on a model. I'd like to be able to find tags with some sort of a %LIKE%
matching, but I'm not sure how.
My current code:
@companies = Company.tagged_with(@query, :any => true)
doing this doesn't work:
tagged_with("%#{@query}%", :any => true)
Any ideas?