Method: Tagalong::Tagger::InstanceMethods#taggables_with

Defined in:
lib/tagalong/tagger.rb

#taggables_with(name) ⇒ Object



104
105
106
107
108
# File 'lib/tagalong/tagger.rb', line 104

def taggables_with(name)
  self.tagalong_tags.where(:name => name).each do |t|
    return t.taggables
  end
end