Sha256: 79e24ec40459fa49c57e5ff83d5f261d7190aea85129b5238fd7d04ef157d9f4
Contents?: true
Size: 560 Bytes
Versions: 5
Compression:
Stored size: 560 Bytes
Contents
module Searchgasm module Condition class NotHaveKeywords < Base class << self def condition_names_for_column super + ["not_have_keywords", "not_keywords", "not_have_kw", "not_kw", "not_have_kwwords", "not_kwwords"] end end def to_conditions(value) keywords = Keywords.new keywords.value = value conditions = keywords.to_conditions return conditions if conditions.blank? conditions.first.gsub!(" LIKE ", " NOT LIKE ") conditions end end end end
Version data entries
5 entries across 5 versions & 1 rubygems