mbleigh / acts-as-taggable-on

A tagging plugin for Rails applications that allows for custom tagging along dynamic contexts.

This URL has Read+Write access

acts-as-taggable-on / rails / init.rb
100644 6 lines (4 sloc) 0.231 kb
1
2
3
4
5
6
require 'acts-as-taggable-on'
 
ActiveRecord::Base.send :include, ActiveRecord::Acts::TaggableOn
ActiveRecord::Base.send :include, ActiveRecord::Acts::Tagger
 
RAILS_DEFAULT_LOGGER.info "** acts_as_taggable_on: initialized properly."