2015/05/18分のコミットです。
CHANGELOGへの追加はありませんでした。
config.generators javascript_engine default value is :js not nil [ci skip]
rails guideのConfiguring Rails Applications
の修正です。
javascript_engine
のデフォルト値の説明が誤っていたのを修正しています。
actionmailer/lib/action_mailer/base.rb
のdocの修正です。
ActionMailer::Base
のdocのグラマーの修正、不要なカンマの削除、長い行の適切な位置に改行を追加、等を行っています。
add missing documentation about generators resource_route [ci skip]
rails guideのConfiguring Rails Applications
の修正です。
config.generators
に設定可能な値の一覧にresource_route
の説明が漏れていたので追加しています。
[ci skip] remove assigns
from the integration test example in API docs
actionpack/lib/action_dispatch/testing/integration.rb
のdocの修正です。
integration testのexampleで assigns
メソッドを使用していたのをassert_select
メソッドを使用するよう修正しています。assigns
メソッドは削除予定の為との事です。
better add_reference
documentation. [ci skip]
activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb
、
activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
のdocの修正です。
add_reference
メソッドのドキュメントの改善を行っています。
- 重複している説明を削除
add_reference
メソッドで使用可能なオプションについての詳細な説明追加references
メソッドのdocからadd_reference
メソッドのdocへのリンクを追加
sqlite3_mem has an existing connection
activerecord/test/cases/connection_pool_test.rb
の取得です。
複数にコネクションを同時に接続するテストで、テスト内容にconnectionの数を確認するテストを追加しています。
Refactoring ActiveRecord::Type::Integer
limit
activerecord/lib/active_record/type/integer.rb
のリファクタリングです。
ensure_in_range
、max_value
メソッドそれぞれで実装していたlimit値の取得処理を_limit
メソッドに切り出しています。