Class: ROM::Header::Embedded

Inherits:
Attribute show all
Defined in:
lib/rom/header/attribute.rb

Overview

Embedded attribute is a special attribute type that has a header

This is the base of complex attributes like Hash or Group

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeEmbedded

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Embedded.



118
119
120
121
# File 'lib/rom/header/attribute.rb', line 118

def initialize(*)
  super
  @header = meta.fetch(:header)
end

Instance Attribute Details

#headerObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

return [Header] header of an attribute



115
116
117
# File 'lib/rom/header/attribute.rb', line 115

def header
  @header
end

Instance Method Details

#pop_keysObject



132
133
134
# File 'lib/rom/header/attribute.rb', line 132

def pop_keys
  header.pop_keys
end

#tuple_keysArray<Symbol>

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return tuple keys from the header

Returns:



128
129
130
# File 'lib/rom/header/attribute.rb', line 128

def tuple_keys
  header.tuple_keys
end