なるようになるブログ

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

rails commit log流し読み(2014/07/26)

2014/07/26分のコミットです。

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

actionview/CHANGELOG.md


Fix documentation of SQlite3Adapter.columns

activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rbの修正です。

columnsメソッドのdocで返す値の型が誤っていたのを修正しています。SQLite3Column->Column


Remove references to SQLite3Column from documentation

activerecord/lib/active_record/attribute_methods.rbのdocの修正です。

こちらもSQLite3ColumnColumnに修正しています。


Merge pull request #16285 from noinkling/password_digest_docs

railties/lib/rails/generators/rails/model/USAGErailties/lib/rails/generators/rails/scaffold/USAGEの修正です。

password:digest を使用した場合についての説明を追加しています。


Fix that render layout should also be picked up by the template dependency tracker, but only half-ways. You can add that layout option on the same render call, and both templates should be added to the dependency tree. But thats going to require a more serious rework of the tracker. Please do help fix this part of it too. For now, render layout needs to be on its own line.

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

renderメソッドの引数に、layout: 'messages/layout'を指定した際に、dependency_trackerが正常にピックアップ出来てなかったのを修正しています。