Project

simple_tag

0.0
No commit activity in last 3 years
No release in over 3 years
Lightweight tagging for Rails 3
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

SimpleTag

Lightweight tagging for Rails 3.

Installation

In your Gemfile:

gem 'simple_tag'

At the command line:

$ bundle install

Do migration:

rails generate simple_tag:migration
rake db:migrate

Usage

In your model:

is_taggable

Make tags:

obj.add_tags(["tag1", "tag2"])
obj.add_tags("tag3")

Delete tags:

obj.remove_tags(["tag1", "tag2"])
obj.remove_tags("tag3")

Find tagged items:

TaggableModel.tagged_with(["tag1", "tag2"])
TaggableModel.tagged_with("tag3")