2025/02/03分のコミットです。
CHANGELOGへの追加はありませんでした。
Avoid autolinking FormHelper#fields_for to itself [ci-skip]
actionview/lib/action_view/helpers/form_helper.rbのdocの修正です。
FormHelper#fields_forのdoc内のfields_forが、自身のdocへのリンクにならないよう修正しています。
Avoid autolinking FormHelper#form_for to itself [ci-skip]
actionview/lib/action_view/helpers/form_helper.rbのdocの修正です。
FormHelper#form_forのdoc内のform_forが、自身のdocへのリンクにならないよう修正しています。
Autolink FormHelper#form_with [ci-skip]
actionview/lib/action_view/helpers/form_helper.rbのdocの修正です。
doc内のform_withがAPI docへのリンクになるよう修正しています。
Autolink FormHelper#form_for [ci-skip]
actionview/lib/action_view/helpers/form_helper.rbのdocの修正です。
doc内のform_forがAPI docへのリンクになるよう修正しています。
Autolink FormTagHelper#checkbox_tag [ci-skip]
actionview/lib/action_view/helpers/form_helper.rbのdocの修正です。
doc内のcheckbox_tagがAPI docへのリンクになるよう修正しています。
Remove RDoc syntax in code example comments [ci-skip]
docの修正です。
doc内のcode exampleのコメントでRDoc syntaxを使用している箇所があったのを、使用しないよう修正しています。
Autolink UncacheableFragmentError [ci-skip]
actionview/lib/action_view/helpers/cache_helper.rbのdocの修正です。
doc内のUncacheableFragmentErrorがAPI docへのリンクになるよう修正しています。
Autolink FormBuilder#form_with [ci-skip]
actionview/lib/action_view/helpers/form_helper.rbのdocの修正です。
doc内のform_withがAPI docへのリンクになるよう修正しています。
Avoid autolinking FormBuilder#fields_for to itself [ci-skip]
actionview/lib/action_view/helpers/form_helper.rbのdocの修正です。
#fields_forのdoc内のfields_forが、自身のdocへのリンクにならないよう修正しています。
Autolink FormBuilder#fields_for [ci-skip]
actionview/lib/action_view/helpers/form_helper.rbのdocの修正です。
doc内のfields_forがAPI docへのリンクになるよう修正しています。
Autolink FormBuilder#text_field [ci-skip]
actionview/lib/action_view/helpers/form_helper.rbのdocの修正です。
doc内のtext_fieldがAPI docへのリンクになるよう修正しています。
Use method call syntax in delegated_type examples [ci-skip]
activerecord/lib/active_record/delegated_type.rbのdocの修正です。
delegated_typeメソッドのdoc内のexapmeコードのメソッド呼び出しの箇所を、instance method notationからmethod call syntaxに修正しています。元の記法(e.g. #entryable_class)だと#から後がコードコメントとして扱われてしまう為。
Use monospace formatting [ci-skip]
activerecord/lib/active_record/delegated_type.rbのdocの修正です。
DelegatedTypeのdocのフォーマットを修正しています。
Correct generated id values in fixture docs
activerecord/lib/active_record/fixtures.rbのdocの修正です。
ActiveRecord::Fixturesのdoc内の自動生成されるIDが実際に生成されるIDのパターンと異なっていたのを修正しています。
Merge pull request #54420 from byroot/call-i18n-exception-handler
actionview/lib/action_view/helpers/translation_helper.rbの修正です。
TranslationHelper#translateで指定されたtranslationが存在しない場合に、I18n.exception_handlerが呼ばれなかった(必ずdefaultが設定される為)のを、I18n.exception_handlerが呼ばれるよう修正しています。