2016/02/27分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
actionview/lib/action_view/log_subscriber.rb
、
actionview/lib/action_view/renderer/template_renderer.rb
の修正です。
templateのrenderを始めた際にログ("Rendering ...")を出力するよう修正しています。
ログ出力用に新しいinstrument event(start_rendering.action_view
)を追加し対応しています。が、後ほど修正されています。
Update to use Subscriber#start instead
actionview/lib/action_view/log_subscriber.rb
、
actionview/lib/action_view/renderer/template_renderer.rb
の修正です。
templateのrenderを始めた際にログを出力するようした対応で、既存のinstrument event(render_template.action_view
)を使用するよう修正しています。
Use redis_connector to create redis connections for both subscriptions and broadcasts
actioncable/lib/action_cable/subscription_adapter/redis.rb
の修正です。
subscription及びbroadcast用のredis connectionを作成する際に、同じメソッド(redis_connector
)を使用するよう修正しています。
Add CHANGELOG entry for "Rendering ..." logging
actionview/CHANGELOG.md
の修正です。
templateのrenderを始めた際にログ("Rendering ...")を出力するよう修正した対応について、CHANGELOGにentryに追加しています。
Specify plaform: :mri for byebug
railties/lib/rails/generators/rails/app/templates/Gemfile
の修正です。
新規Rails Application用のデフォルトのGemfile
でbyebug
の指定の際に、plaform(mri
)を指定するよう修正しています。byebug
がmriでしか動作しない為。
Create tmp folder if not present
railties/lib/rails/tasks/dev.rake
の修正です。
dev:cache
タスクで、最初にtmp
ディレクトリを作成するよう修正しています。
タスクの中でtmp
ディレクトリを使用している為。
railties/lib/rails/tasks/dev.rake
の修正です。
不要な空白を削除しています。
[ci skip]Add info for specifying logger in different envrionments.
rails guideのDebugging Rails Applications
の修正です。
What is the Logger?
の項、任意のloggerを設定する場合のexampleについて説明している箇所に、loggerの設定はconfig/application.rb
、またはenvironmentファイルに設定を行う旨説明を追加しています。
Merge pull request #23439 from ryohashimoto/160203_rake_rails
railties
の修正です。
rails
namespaceを使用していたtask(rails:update
等)のnamespaceがapp
に変更になりました。その為、元々はrake rails:update
としていたのをrails app:update
と実行する必要があります。
Rails 5からrake taskの実行をrailsコマンド経由で行うようになった為、rails
が被ってしまい不自然な為変更したとの事です。