Class: Searchgasm::Condition::NotLike

Inherits:
Base
  • Object
show all
Defined in:
lib/searchgasm/condition/not_like.rb

Instance Attribute Summary

Attributes inherited from Base

#column, #column_for_type_cast, #column_sql, #column_sql_format, #klass, #table_name

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

condition_names_for_model, condition_type_name, #explicitly_set_value=, #explicitly_set_value?, handle_array_value?, ignore_meaningless_value?, #initialize, join_arrays_with_or?, #options, #sanitize, #value, #value=, #value_is_meaningless?

Constructor Details

This class inherits a constructor from Searchgasm::Condition::Base

Class Method Details

.condition_names_for_columnObject



5
6
7
# File 'lib/searchgasm/condition/not_like.rb', line 5

def condition_names_for_column
  super + ["not_contain", "not_have"]
end

Instance Method Details

#to_conditions(value) ⇒ Object



10
11
12
13
14
15
16
17
# File 'lib/searchgasm/condition/not_like.rb', line 10

def to_conditions(value)
  like = Like.new(klass, options)
  like.value = value
  conditions = like.to_conditions
  return conditions if conditions.blank?
  conditions.first.gsub!(" LIKE ", " NOT LIKE ")
  conditions
end