module ActsAsTaggableOnDynamic::Taggable

Public Instance Methods

acts_as_taggable_dynamic() click to toggle source
# File lib/acts_as_taggable_on_dynamic/taggable.rb, line 4
def acts_as_taggable_dynamic
  # make the model taggable from the original gem
  acts_as_taggable

  # add the specific model methods we need
  class_eval do
    include ActsAsTaggableOnDynamic::Utils
    include ActsAsTaggableOnDynamic::DynamicTagContextAttributes
  end
end