2015/07/19分のコミットです。
CHANGELOGへの追加はありませんでした。
Ensure that 'ActionController::Parameters' can still be passed to AR for collection associations
activerecord/lib/active_record/nested_attributes.rb
の修正です。
assign_nested_attributes_for_collection_association
メソッドで引数のattributesがActionController::Parameters
だった際に、
attributesをHashに変換するよう修正しています。
先日、associationが単体の場合の修正が行われた(Ensure that ActionController::Parameters
can still be passed to AR)のですが、collectionの場合にも同じように修正を入れています。
Merge pull request #20932 from twalpole/collection_association_parameters
added examples to DateAndTime::Calculations [ci skip]
activesupport/lib/active_support/core_ext/date_and_time/calculations.rb
のdocの修正です。
DateAndTime::Calculations
クラスの各メソッドのdocにexampleを追加しています。
Merge pull request #20924 from andrii/master
activerecord/lib/active_record/associations/collection_proxy.rb
のdocの修正です。
Associations::CollectionProxy#any?
メソッドのexampleの実行結果にタイポがあったのを修正しています。
Fix formatting of force_ssl options documentation [ci skip]
actionpack/lib/action_controller/metal/force_ssl.rb
のdocの修正です。
force_ssl
メソッド、force_ssl_redirect
メソッドのdocのparametersについて説明している箇所で、不要なインデントがあるせいでフォーマットがおかしくなってしまっていたのを修正しています。