Project

tag_bat

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

Development

~> 0.4.0
~> 1.3.7

Runtime

>= 3.2.0
 Project Readme
Polymorphically adds tags to ActiveRecord models:

Usage:
class Photo < ActiveRecord::Base
  has_many_tags
end

now, photo is taggable as follows:
photo = Photo.create
photo.tag_names << "landscape"
photo.tag_names << "2013 trip"

installation:
add the following to Gemfile:
gem 'tag_bat'

then, from the command line run:
$ bundle install
$ rake tab_bat:install:migrations
$ rake db:migrate