Если вы откроете папку, в которой установлены драгоценные камни на вашем компьютере, вы можете перейти к:
ActiveSupport / Библиотека / active_support / core_ext / класс / inheritable_attributes.rb
чтобы увидеть, где класс на самом деле реализован. Кроме того, вы можете увидеть последнюю версию файла в репозитории Rails на GitHub.
В этом файле доступна документация уровня класса (ниже), но нет документации уровня метода, поэтому вы, вероятно, ничего не смогли найти.
# Allows attributes to be shared within an inheritance hierarchy, but where each descendant gets a copy of
# their parents' attributes, instead of just a pointer to the same. This means that the child can add elements
# to, for example, an array without those additions being shared with either their parent, siblings, or
# children, which is unlike the regular class-level attributes that are shared across the entire hierarchy.