Class: Searchgasm::Condition::NotBeginWith
- Defined in:
- lib/searchgasm/condition/not_begin_with.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_column ⇒ Object
5 6 7 |
# File 'lib/searchgasm/condition/not_begin_with.rb', line 5 def condition_names_for_column super + ["not_bw", "not_sw", "not_start_with", "not_start", "beginning_is_not", "beginning_not"] end |
Instance Method Details
#to_conditions(value) ⇒ Object
10 11 12 13 14 15 16 17 |
# File 'lib/searchgasm/condition/not_begin_with.rb', line 10 def to_conditions(value) begin_with = BeginWith.new(klass, ) begin_with.value = value conditions = being_with.sanitize return conditions if conditions.blank? conditions.first.gsub!(" LIKE ", " NOT LIKE ") conditions end |