aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/server_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Invoke rails command inside the railties' test app with ↵bogdanvlviv2017-10-081-1/+1
| | | | | | TestHelpers::Generation#rails See #30520
* Make `restart` and `dev:cache` tasks work when customizing pid file pathyuuji.yaginuma2017-08-211-0/+28
| | | | | | | | | | Originally, it hard-coded pid file path. It can not be removed when customizing pid file path. But rake task can not get pid file path. Therefore, do not remove file in rake task, makes it possible to judge whether it is restart from the argument of the command and removes the file in server command. Fixes #29306
* Adding frozen_string_literal pragma to Railties.Pat Allan2017-08-141-0/+2
|
* Deprecate support of older `config.ru`yuuji.yaginuma2017-08-081-0/+31
Since Rails 4.0, `config.ru` generated by default uses instances of `Rails.application`. Therefore, I think that it is good to deprecate the old behavior. Related: #9669