method

attribute

attribute(attr_name)
private

No documentation available.

# File activemodel/lib/active_model/attributes.rb, line 126
      def attribute(attr_name)
        name = attr_name.to_s
        name = self.class.attribute_aliases[name] || name

        @attributes.fetch_value(name)
      end