module HasMeta::QueryMethods::ClassMethods
Public Instance Methods
excluding_meta(args=nil, options={})
click to toggle source
# File lib/has_meta/query_methods.rb, line 13 def excluding_meta args=nil, options={} HasMeta::MetaQuery.new(self, MetaData, args, options.merge(exclude: true)).build end
with_meta(args=nil, options={})
click to toggle source
# File lib/has_meta/query_methods.rb, line 9 def with_meta args=nil, options={} HasMeta::MetaQuery.new(self, MetaData, args, options).build end