method
attributes
v7.0.0 -
Show latest stable
- Class:
ActiveModel::LazyAttributeSet
attributes()protected
No documentation available.
# File activemodel/lib/active_model/attribute_set/builder.rb, line 61
def attributes
unless @materialized
values.each_key { |key| self[key] }
types.each_key { |key| self[key] }
@materialized = true
end
@attributes
end