Module: RulesProcessor::OperatorsToSelect

Defined in:
lib/rules_processor/operators_to_select.rb

Class Method Summary collapse

Class Method Details

.baseObject



4
5
6
# File 'lib/rules_processor/operators_to_select.rb', line 4

def self.base
  [:is, :is_not].freeze
end

.comparableObject



13
14
15
16
17
18
# File 'lib/rules_processor/operators_to_select.rb', line 13

def self.comparable
  [:less_than,
   :less_than_equal,
   :greater_than,
   :greater_than_equal].freeze
end

.includableObject



8
9
10
11
# File 'lib/rules_processor/operators_to_select.rb', line 8

def self.includable
  [:include,
   :not_include].freeze
end