Sha256: 6a8cfe7621964e887d11268e110004c22605ae5f372a9c4ae256ad8603511975
Contents?: true
Size: 1.82 KB
Versions: 2
Compression:
Stored size: 1.82 KB
Contents
require 'active_record' require 'active_record/version' require 'active_support/core_ext/module' require 'action_view' require_relative 'acts_as_taggable_on/engine' if defined?(Rails) require 'digest/sha1' module ActsAsTaggableOn extend ActiveSupport::Autoload autoload :Tag autoload :TagList autoload :TagListParser autoload :Taggable autoload :Tagger autoload :Tagging autoload :TagsHelper autoload :VERSION autoload_under 'taggable' do autoload :Cache autoload :Collection autoload :Core autoload :Dirty autoload :Ownership autoload :Related end autoload :Utils autoload :Compatibility class DuplicateTagError < StandardError end def self.setup @configuration ||= Configuration.new yield @configuration if block_given? end def self.method_missing(method_name, *args, &block) @configuration.respond_to?(method_name) ? @configuration.send(method_name, *args, &block) : super end def self.respond_to?(method_name, include_private=false) @configuration.respond_to? method_name end def self.glue setting = @configuration.delimiter delimiter = setting.kind_of?(Array) ? setting[0] : setting delimiter.ends_with?(' ') ? delimiter : "#{delimiter} " end class Configuration attr_accessor :delimiter, :force_lowercase, :force_parameterize, :strict_case_match, :remove_unused_tags def initialize @delimiter = ',' @force_lowercase = false @force_parameterize = false @strict_case_match = false @remove_unused_tags = false end end setup end ActiveSupport.on_load(:active_record) do extend ActsAsTaggableOn::Compatibility extend ActsAsTaggableOn::Taggable include ActsAsTaggableOn::Tagger end ActiveSupport.on_load(:action_view) do include ActsAsTaggableOn::TagsHelper end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
acts-as-taggable-on-3.3.0 | lib/acts-as-taggable-on.rb |
acts-as-taggable-on-3.2.6 | lib/acts-as-taggable-on.rb |