# File lib/big_record/base.rb, line 27
    def [](attr_name)
      if attr_name.ends_with?(":")
        read_family_attributes(attr_name)
      else
        read_attribute(attr_name)
      end
    end