なるようになるブログ

読書感想文かrailsについてかrubyについてか

rails commit log流し読み(2020/10/06)

2020/10/06分のコミットです。

CHANGELOGへの追加はありませんでした。


Ensure tag.with_options({}).p builds a <p>

actionview/lib/action_view/helpers/tag_helper.rbの修正です。

tag builderで with_options + pを指定した場合に<p>タグが生成出来ずエラーになってしまうバグがあったのを修正しています。


Wording in guides: Prefer environment over mode

各guideの修正です。

environmentについて説明している箇所で、説明でmodeを使用していた箇所を、全てenvironmentに修正しています。


Accessors here are public

actionmailer/test/base_test.rbの修正です。

public methodsを呼び出すのにsendを使用していたのを、public_sendを使用するよう修正しています。


Routes methods are public methods

actionpack/lib/action_dispatch/routing/polymorphic_routes.rbの修正です。

public methodsを呼び出すのにsendを使用していたのを、public_sendを使用するよう修正しています。


Module#include is a public method since Ruby 2.1

activestorage/test/test_helper.rbの修正です。

public methodであるModule#includeを使用するのにsendを使用していたのを、メソッドを直接呼び出すよう修正しています。