なるようになるブログ

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

rails commit log流し読み(2024/01/20)

2024/01/20分のコミットです。

CHANGELOGにのったコミットは以下の通りです。

railties/CHANGELOG.md


Add example to modules_for_helpers documentation [ci-skip]

actionpack/lib/abstract_controller/helpers.rbのdocの修正です。

AbstractController::Helpers.modules_for_helpersメソッドのdocに実行結果のexampleを追加しています。


Create IRBConsole to encapsulate IRB-specific setup

railties/lib/rails/commands/console/console_command.rbの修正です。

Rails consoleのpromptにRails env名を表示するよう修正しています。

dev:001>    # for RAILS_ENV=developmen
test:001>   # for RAILS_ENV=test
prod:001>   # for RAILS_ENV=production
my_env:001> # for RAILS_ENV=my_env

ターミナルがサポートしている場合、 developmenttestはgreen、productionはredで表示されるようになっています。


fix: Entry#entryable_types to Entry.entryable_types

rails guideのActive Record Associationsの修正です。

Declare delegated_typeセクションにあるdelegated_typeにより使用出来るメソッドの一覧にタイポがあったのを修正しています。


Remove unnecessary nocolorize flag

railties/lib/rails/commands/console/console_command.rbの修正です。

IRB用の設定を行うタイミングを修正、テストから不要になったオプションの指定の削除、等々を行っています。