Class: DocumentMapper::Selector

Inherits:
Object
  • Object
show all
Defined in:
lib/document_mapper/selector.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(opts = {}) ⇒ Selector

Returns a new instance of Selector.



5
6
7
8
9
10
# File 'lib/document_mapper/selector.rb', line 5

def initialize(opts = {})
  unless VALID_OPERATORS.include? opts[:operator]
    raise OperatorNotSupportedError
  end
  @attribute, @operator = opts[:attribute], opts[:operator]
end

Instance Attribute Details

#attributeObject (readonly)

Returns the value of attribute attribute.



3
4
5
# File 'lib/document_mapper/selector.rb', line 3

def attribute
  @attribute
end

#operatorObject (readonly)

Returns the value of attribute operator.



3
4
5
# File 'lib/document_mapper/selector.rb', line 3

def operator
  @operator
end