Class: Connect::Entry::Value

Inherits:
Base
  • Object
show all
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

#selector, #value, #xref

Instance Method Summary collapse

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

#inspectObject



14
15
16
# File 'lib/connect/entries/value.rb', line 14

def inspect
  to_ext
end

#to_extHash

Translate the object for external representation

rubocop:disable CaseIndentation, EndAlignment, IndentationWidth

Returns:

  • (Hash)

    a hash containing the name as key and the data as a [Hash]



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/connect/entries/value.rb', line 26

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