Class: Connect::Entry::Value
- Includes:
- Conversions
- Defined in:
- lib/connect/entries/value.rb
Overview
Represent an actual value in the values_table
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#to_ext ⇒ Hash
Translate the object for external representation.
Methods included from Conversions
#convert_array, #convert_array_entry, #convert_hash, #convert_hash_entry
Methods inherited from Base
#add_reference, #final, #initialize, #merge!
Constructor Details
This class inherits a constructor from Connect::Entry::Base
Instance Method Details
#to_ext ⇒ Hash
Translate the object for external representation
rubocop:disable CaseIndentation, EndAlignment, IndentationWidth
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/connect/entries/value.rb', line 21 def to_ext value = case @value when Array # # Because we've defined some convenience methods for Array's, we # force the return value to be of type ExtendedArray # convert_array(@value) when Hash # # Because we've defined some convenience methods for Hashes, we force # the type to be a MathodHash # convert_hash(@value) else @value.respond_to?(:final) ? @value.final : @value end Selector.run(value, selector) end |