Sha256: 7ef9bc8e591378352577d6b4bbc5d1e260e160ac20269f52d247ff9456bd6b16
Contents?: true
Size: 307 Bytes
Versions: 4
Compression:
Stored size: 307 Bytes
Contents
module ActsAsTaggableSimple #:nodoc: # ActiveRecord model for storing a join between a taggable object and an ActsAsTaggableSimple::Tag object. class Tagging < ::ActiveRecord::Base belongs_to :taggable, :polymorphic => true belongs_to :tag, :class_name => "ActsAsTaggableSimple::Tag" end end
Version data entries
4 entries across 4 versions & 1 rubygems