markbates / mongoid-tags-arent-hard

A tagging gem for Mongoid 3 that doesn't actually suck.
MIT License
16 stars 12 forks source link

Add #delete method #7

Open cblock opened 11 years ago

cblock commented 11 years ago

This method simply removes a tag from all selected records:

Foo.delete_tags('tag name')
Foo.delete_colors('tag name')

Foo.where(name: 'some name').delete_tags('tag name')
markbates commented 11 years ago

Can't wait for the pull request!

davesouth commented 10 years ago

Posted a workaround to issue #6.