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
が呼ばれるよう修正しています。