From beaf8cbad997fa5c05e309eea6ad1ed8f414f385 Mon Sep 17 00:00:00 2001 From: Hyonjee Joo Date: Mon, 2 Mar 2015 09:17:33 -0500 Subject: Rake restart task no longer loads entire Rails environment when run. The restart task does not need access to models or other classes and helpers from the application environment. --- railties/lib/rails/tasks/restart.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'railties') diff --git a/railties/lib/rails/tasks/restart.rake b/railties/lib/rails/tasks/restart.rake index 1af0302824..1e8940b675 100644 --- a/railties/lib/rails/tasks/restart.rake +++ b/railties/lib/rails/tasks/restart.rake @@ -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 -- cgit v1.2.3