method

attributes

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