2016/09/16分のコミットです。
CHANGELOGへの追加はありませんでした。
Update ActiveModel::Dirty Doc [ci skip]
activemodel/lib/active_model/dirty.rb
のdocの修正です。
ActiveModel::Dirty
のexampleコード内のインスタンス生成処理から引数を削除しています。
- # person = Person.new("Uncle Bob") + # person = Person.new
initializationに指定したattributeはdirty checkの対象にならない為、exampleとして宜しく無いのでは、という事で修正したようdせう。
Rename test to match what it does
actionview/test/template/form_helper_test.rb
の修正です。
form_for
メソッドにas
オプションを指定するテストのテスト名がtest_form_for_with_symbol_object_name
になっていたのを、test_form_for_with_symbol_as
に修正しています。
as
オプションは昔はobject_name
オプションという名前だったのですが、オプション名を変更する際にテスト名の変更が漏れていたとの事です。
fix typo in add_column
doc [ci skip]
activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
のdocの修正です。
add_column
メソッドのdocのSQLServerについて説明している箇所にタイポがあったのを修正しています。
Force correct namespace when using TransactionManager
activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb
の修正です。
ActiveRecord::ConnectionAdapters::DatabaseStatements#reset_transaction
メソッドでTransactionManager
を使用する際、namespaceを指定するよう修正しています。
actionview/lib/action_view/template/html.rb
、
actionview/lib/action_view/template/text.rb
の修正です。
ActionView::Template::HTML#inspect
、ActionView::Template::Text#inspect
それぞれをidentifier
のaliasとして定義するよう修正しています。
- def inspect - "html template" - end + alias_method :inspect, :identifier
#inspect
の内容が#identifier
と完全に一緒な為、との事です。
Update ActiveModel::Dirty Doc [ci skip]
activemodel/lib/active_model/dirty.rb
のdocの修正です。
ActiveModel::Dirty
のexampleコードを、インスタンス生成時に引数を渡さないで済むよう全体的に見直しています。