module ActsAsTaggableOn

This module is deprecated and will be removed in the incoming versions

Constants

VERSION

Public Class Methods

glue() click to toggle source
# File lib/acts-as-taggable-on.rb, line 58
def self.glue
  setting = @configuration.delimiter
  delimiter = setting.kind_of?(Array) ? setting[0] : setting
  delimiter.end_with?(' ') ? delimiter : "#{delimiter} "
end
method_missing(method_name, *args, &block) click to toggle source
Calls superclass method
# File lib/acts-as-taggable-on.rb, line 49
def self.method_missing(method_name, *args, &block)
  @configuration.respond_to?(method_name) ?
      @configuration.send(method_name, *args, &block) : super
end
respond_to?(method_name, include_private=false) click to toggle source
# File lib/acts-as-taggable-on.rb, line 54
def self.respond_to?(method_name, include_private=false)
  @configuration.respond_to? method_name
end
setup() { |configuration| ... } click to toggle source
# File lib/acts-as-taggable-on.rb, line 44
def self.setup
  @configuration ||= Configuration.new
  yield @configuration if block_given?
end