2015/05/30分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
actionmailer/test/abstract_unit.rb
の修正です。
使用していないmail
のrequireを削除しています。
Revert "Replace use of alias chains with prepend at core_ext/date and core_ext/time"
先日マージされた、 Date
クラス、Time
クラスで既存のメソッドの書き換えを行うのにalias_method
を使って行っていたのをModule#prepend
を使用しるよう対応した Merge pull request #19878 from pabloh/replace_alias_chains_with_prepend をrevertしています。
Time#<=>
メソッド内での処理に誤りがあり、Railsのテストを実行するとSystemStackError: stack level too deep
で落ちてしまうようになっていたので、一旦revertしたとの事です。
Update inline_preview_interceptor.rb
actionmailer/lib/action_mailer/inline_preview_interceptor.rb
のdocの修正です。
InlinePreviewInterceptor
クラスのdoc内、InlinePreviewInterceptor
クラスを使用したく無い場合について説明している箇所の言い回しを修正しています。
actionmailer/lib/action_mailer/log_subscriber.rb
のdocの修正です。
LogSubscriber
クラスのdocにタイポがあったのを修正しています。
Make the wording less confusing
actionmailer/lib/action_mailer/inline_preview_interceptor.rb
のdocの修正です。
先にコミットされた、Update inline_preview_interceptor.rb だと説明が不足していると思われるので、再度InlinePreviewInterceptor
クラスを使用したく無い場合について説明している箇所の言い回しを修正しています。
activemodel/lib/active_model/attribute_methods.rb
、
activemodel/lib/active_model/errors.rb
のdocの修正です。
doc内でRDocのフォーマットを使用するよう修正しています。
Require yaml for isolation test
activemodel/test/cases/serializers/xml_serialization_test.rb
の修正です。
テスト内で使用しているyaml
クラスのrequireを追加しています。元々require処理はあったのですが、Remove use of mocha from Active Model の対応の際に、誤って削除されてしまっていたようです。
rake restart
should work without a tmp
folder
railties/lib/rails/tasks/restart.rake
の修正です。
restart
タスクで、tmp
ディレクトリが無い場合に、tmp
ディレクトリを作成するよう対応しています。
restart
タスクはtmp/restart.txt'を
touchしているだけなのですが、
tmpディレクトリ自体が無いと
touch`メソッドがエラーになってしまうので、エラーにならないよう、最初にディレクトリだけは作成するようにしたとの事です。
Generate a .keep
file in tmp
folder
railties/lib/rails/generators/rails/app/app_generator.rb
、
railties/lib/rails/generators/rails/app/templates/gitignore
の修正です。
tmp
ディレクトリ配下に.keep
ファイルを作成するよう修正しています。
restart
タスクもそうだったのですが、tmp
ディレクトリがある事を前提としているスクリプトが幾つかあり、それらが正常に動作するようにする為に、tmp
ディレクトリ自体はバージョン管理に入るよう対応したようです。gitignore
の方も修正されており、そちらには/tmp/*
が追加されています。
Add test to ensure tmp:clear works when tmp is missing
railties/test/application/rake_test.rb
の修正です。
tmp
ディレクトリが存在しない場合にtmp:clear
タスクを実行した場合に、エラーにならない事を確認する為のテストを追加しています。
Merge pull request #20375 from yoongkang/docfix
actionpack/lib/action_dispatch/routing/mapper.rb
のdocの修正です。
controller
メソッドのexampleで、deprecateになっているvia
オプション無しのmatch
メソッドを使用している箇所があったので、via
オプションを追加しています。
match method doc fix [ci skip]
actionpack/lib/action_dispatch/routing/mapper.rb
のdocの修正です。
match
メソッドのexampleで、deprecateになっているvia
オプション無しのmatch
メソッドを使用している箇所があったので、via
オプションを追加しています。