Class: Alchemy::Tag

Inherits:
Gutentag::Tag
  • Object
show all
Defined in:
app/models/alchemy/tag.rb

Class Method Summary collapse

Class Method Details

.replace(tag, new_tag) ⇒ Object

Replaces tag with new tag on all models tagged with tag.



17
18
19
20
21
22
23
# File 'app/models/alchemy/tag.rb', line 17

def self.replace(tag, new_tag)
  tag.taggings.collect(&:taggable).each do |taggable|
    taggable.tag_list.delete(tag.name)
    taggable.tag_list << new_tag.name
    taggable.save
  end
end