1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #19169 from hjoo/rake_restart

Rake restart task no longer loads entire Rails environment when run
This commit is contained in:
Eileen M. Uchitelle 2015-03-02 10:39:24 -05:00
commit 230393a5bd

View file

@ -1,4 +1,4 @@
desc "Restart app by touching tmp/restart.txt"
task restart: :environment do
task :restart do
FileUtils.touch('tmp/restart.txt')
end