From f0fec311236e6d2cdd80af311216c62b03d719a1 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Fri, 24 Apr 2015 12:20:06 +0200 Subject: [PATCH] Removed "rails s" from Guardfile --- Guardfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Guardfile b/Guardfile index 0623256..bee49e7 100644 --- a/Guardfile +++ b/Guardfile @@ -39,10 +39,10 @@ # zeus: false # enables zeus gem. # CLI: 'rails server' # customizes runner command. Omits all options except `pid_file`! -guard 'rails' do - watch('Gemfile.lock') - watch(%r{^(config|lib)/.*}) -end +#guard 'rails' do +# watch('Gemfile.lock') +# watch(%r{^(config|lib)/.*}) +#end guard :minitest do watch(%r{^app/(.+)\.rb$}) { |m| "test/#{m[1]}_test.rb" }