Displaying 1 result from an estimated 1 matches for "count_tagged_with".
2006 Feb 13
0
count_as_taggable distinctly
I needed to count tagged records, I came up with this:
<pre>def count_tagged_with(options = {})
options = { :separator => '' '' }.merge(options)
tag_names =
ActiveRecord::Acts::Taggable.split_tag_names(options[:any] ||
options[:all], options[:separator])
raise "No tags were passed to :any or :all options" if
tag_name...