From 34235dbbaad965fb7b17ddbd54a08bd7d9428804 Mon Sep 17 00:00:00 2001 From: echarp Date: Sun, 18 Mar 2018 15:32:43 +0100 Subject: [PATCH] The rails startup guard file has been updated to use the rails binary in "bin" --- Guardfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Guardfile b/Guardfile index f9fa6181..b3c1d525 100644 --- a/Guardfile +++ b/Guardfile @@ -44,7 +44,7 @@ guard 'migrate' do watch('db/seeds.rb') end -guard :rails, port: 3000, host: '0.0.0.0' do +guard :rails, port: 3000, host: '0.0.0.0', CLI: 'bin/rails server' do watch('Gemfile.lock') watch(%r{^(config|lib)/.*\.rb}) end