Class: Connect::Entry::RegexpObjectReference

Inherits:
ObjectReference show all
Defined in:
lib/connect/entries/regexp_object_reference.rb

Overview

A class representing a object entry in the values table.

Instance Attribute Summary

Attributes inherited from ObjectReference

#selector

Attributes inherited from Base

#selector, #value, #xref

Instance Method Summary collapse

Methods inherited from ObjectReference

#initialize

Methods inherited from Base

#add_reference, #final, #initialize, #merge!

Constructor Details

This class inherits a constructor from Connect::Entry::ObjectReference

Instance Method Details

#inspectObject



10
11
12
# File 'lib/connect/entries/regexp_object_reference.rb', line 10

def inspect
  "regexp reference to #{@type}(#{@name})#{@selector}"
end

#to_extHash

Translate the object for external representation

Returns:

  • (Hash)

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



20
21
22
23
24
25
26
27
28
# File 'lib/connect/entries/regexp_object_reference.rb', line 20

def to_ext
  values = Connect::Entry::Base.objects_table.lookup_regexp(@type, @name)
  return values if @selector.nil?
  return_value = {}
  values.each do |key, hash|
    return_value.merge!(key => Connect::Selector.run(hash, @selector))
  end
  return_value
end