Sha256: a5562783b980393e8ba7697b71fa7cbd4e6b4348fb96fbf864aae79577f464ba
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
module ActsAsTaggableArrayOn module Taggable def self.included(base) base.extend(ClassMethod) end module ClassMethod def acts_as_taggable_array_on(*tag_def) tag_name = tag_def.first scope :"with_any_#{tag_name}", ->(* tags){where("#{tag_name} && ARRAY[?]", tags)} scope :"with_all_#{tag_name}", ->(* tags){where("#{tag_name} @> ARRAY[?]", tags)} scope :"without_any_#{tag_name}", ->(* tags){where.not("#{tag_name} && ARRAY[?]", tags)} scope :"without_all_#{tag_name}", ->(* tags){where.not("#{tag_name} @> ARRAY[?]", tags)} self.class.class_eval do define_method :"all_#{tag_name}" do |options = {}, &block| subquery_scope = unscoped.select("unnest(#{table_name}.#{tag_name}) as tag").uniq subquery_scope = subquery_scope.instance_eval(&block) if block from(subquery_scope).pluck('tag') end define_method :"#{tag_name}_cloud" do |options = {}, &block| subquery_scope = unscoped.select("unnest(#{table_name}.#{tag_name}) as tag") subquery_scope = subquery_scope.instance_eval(&block) if block from(subquery_scope).group('tag').order('tag').pluck('tag, count(*) as count') end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acts-as-taggable-array-on-0.2.1 | lib/acts-as-taggable-array-on/taggable.rb |