2015/01/16分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
Time columns should support time zone aware attributes
ActiveRecordの修正です。
time_zone_aware_attributes
の設定が、datetime
だけではなく、time
型のカラムにも影響が出るよう修正しています。
config.time_zone
にUTC
以外の値を指定した場合、そのtime zoneでtime型も扱われるようになる、との事です。 time zone周りはややこしいなあ…。
Fix Typo SecureToken for schema sample [ci skip]
activerecord/lib/active_record/secure_token.rb
のdocの修正です。
SecureTokenのexxampleにtypoがあったのを修正しています。
[ci skip] fix typo sill -> still
activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb
のdocの修正です。
先に行われたTime.zone
の対応で出力されるwarningにタイポがあったのを修正しています。
Adding tip about jQuery UJS [ci skip]
rails guideのGetting Started with Rails
の修正です。
Deleting Articles
の項にWorking With Javascript in Rails guideへのリンクを追加しています。
Remove incorrect comment in ActiveRecord::Type::Value
activerecord/lib/active_record/type/value.rb
のdocの修正です。
initialize
メソッドのコメントに、precision, scale, and limitオプションはschemaのダンプにしか使用していない、との記載があったのですが、
実際はそれ以外でも使用しているので、コメントを削除しています。
DRY default limit in ActiveRecord::Type::Integer
activerecord/lib/active_record/type/integer.rb
の修正です。
limitのデフォルト値(4)がコード中に直接数字で書かれてしまっていたのを、定数で管理するよう修正しています。
docs, update "How to run Active Record tests". [ci skip]
activerecord/RUNNING_UNIT_TESTS.rdoc
の修正です。
Active Recordのテスト用のタスク名に誤りがあったのを修正、及びSQLite3のin-memory databaseについての説明を追加しています。