Module: ActiveRecord::AttributeMethods::Read

Defined in:
lib/composite_primary_keys/attribute_methods/read.rb

Instance Method Summary collapse

Instance Method Details

#_read_attribute(attr_name, &block) ⇒ Object

:nodoc



20
21
22
23
24
25
26
27
# File 'lib/composite_primary_keys/attribute_methods/read.rb', line 20

def _read_attribute(attr_name, &block) # :nodoc
  # CPK
  if attr_name.kind_of?(Array)
    attr_name.map {|name| @attributes.fetch_value(name.to_s, &block)}
  else
    @attributes.fetch_value(attr_name.to_s, &block)
  end
end

#read_attribute(attr_name, &block) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/composite_primary_keys/attribute_methods/read.rb', line 4

def read_attribute(attr_name, &block)
  # CPK
  # name = attr_name.to_s
  name = attr_name
  if self.class.attribute_alias?(name)
    name = self.class.attribute_alias(name)
  end

  primary_key = self.class.primary_key
  # CPK
  # name = primary_key if name == "id" && primary_key
  name = primary_key if name == "id" && primary_key && !composite?
  sync_with_transaction_state if name == primary_key
  _read_attribute(name, &block)
end