なるようになるブログ

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

rails commit log流し読み(2019/04/29)

2019/04/29分のコミットです。

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


Improve error message of ActiveSupport delegate

activesupport/lib/active_support/core_ext/module/delegation.rbの修正です。

delegateメソッドにto引数が指定されなかった場合のエラーメッセージで、to引数についてoptions hashと説明していたのを、keyword argumentに修正しています。

Update delegate to use newer Ruby syntaxでkeyword argumentを使用するよう修正されているため。


Extract _raise_record_not_touched_error

activerecord/lib/active_record/persistence.rbactiverecord/lib/active_record/touch_later.rbの修正です。

persistしていないrecordに対してtouchを呼び出し際に使用するエラーメッセージの生成処理を、処理毎に実装していたのを、メソッドに切り出して共通で使用するよう修正しています。