Class: DocumentMapper::Selector
- Defined in:
- lib/document_mapper/selector.rb
Instance Attribute Summary collapse
-
#attribute ⇒ Object
readonly
Returns the value of attribute attribute.
-
#operator ⇒ Object
readonly
Returns the value of attribute operator.
Instance Method Summary collapse
-
#initialize(opts = {}) ⇒ Selector
constructor
A new instance of Selector.
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
#attribute ⇒ Object (readonly)
Returns the value of attribute attribute.
3 4 5 |
# File 'lib/document_mapper/selector.rb', line 3 def attribute @attribute end |
#operator ⇒ Object (readonly)
Returns the value of attribute operator.
3 4 5 |
# File 'lib/document_mapper/selector.rb', line 3 def operator @operator end |