Module: ActsAsTaggableOnPadrino::Taggable

Defined in:
lib/acts_as_taggable_on_padrino/taggable.rb,
lib/acts_as_taggable_on_padrino/taggable/core.rb,
lib/acts_as_taggable_on_padrino/taggable/cache.rb,
lib/acts_as_taggable_on_padrino/taggable/related.rb,
lib/acts_as_taggable_on_padrino/taggable/tag_list.rb,
lib/acts_as_taggable_on_padrino/taggable/ownership.rb,
lib/acts_as_taggable_on_padrino/taggable/collection.rb

Defined Under Namespace

Modules: Cache, Collection, Core, Ownership, Related Classes: TagList

Instance Method Summary collapse

Instance Method Details

#acts_as_taggableObject

This is an alias for calling acts_as_taggable_on :tags.

Example:

class Book < ActiveRecord::Base
  acts_as_taggable
end


14
15
16
# File 'lib/acts_as_taggable_on_padrino/taggable.rb', line 14

def acts_as_taggable
  acts_as_taggable_on :tags
end

#acts_as_taggable_on(*tag_types) ⇒ Object

Make a model taggable on specified contexts.

Example:

class User < ActiveRecord::Base
  acts_as_taggable_on :languages, :skills
end

Parameters:

  • tag_types (Array)

    An array of taggable contexts



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/acts_as_taggable_on_padrino/taggable.rb', line 27

def acts_as_taggable_on(*tag_types)
  tag_types = tag_types.to_a.flatten.compact.map {|type| type.to_sym }

  if taggable?
    write_inheritable_attribute(:tag_types, (self.tag_types + tag_types).uniq)
  else
    write_inheritable_attribute(:tag_types, tag_types)
    write_inheritable_attribute(:tag_table_name, ActsAsTaggableOnPadrino::Tag.table_name)
    write_inheritable_attribute(:tagging_table_name, ActsAsTaggableOnPadrino::Tagging.table_name)
    class_inheritable_reader(:tag_types, :tag_table_name, :tagging_table_name)

    Tag.like_operator = 'ILIKE' if Tag.using_postgresql?

    class_eval do
      has_many :taggings, :as => :taggable, :dependent => :destroy, :include => :tag, :class_name => "ActsAsTaggableOnPadrino::Tagging"
      has_many :base_tags, :through => :taggings, :source => :tag, :class_name => "ActsAsTaggableOnPadrino::Tag"

      def self.taggable?
        true
      end

      include ActsAsTaggableOnPadrino::Taggable::Core
      include ActsAsTaggableOnPadrino::Taggable::Collection
      include ActsAsTaggableOnPadrino::Taggable::Cache
      include ActsAsTaggableOnPadrino::Taggable::Ownership
      include ActsAsTaggableOnPadrino::Taggable::Related
    end
  end
end

#taggable?Boolean

Returns:

  • (Boolean)


3
4
5
# File 'lib/acts_as_taggable_on_padrino/taggable.rb', line 3

def taggable?
  false
end