From 0df652ffd8fbde37be50b2b4e9c1738e6a3ca342 Mon Sep 17 00:00:00 2001 From: Thibault Jouan Date: Fri, 1 May 2015 17:54:34 +0000 Subject: [PATCH] Configure guard to watch changes on API views --- Guardfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Guardfile b/Guardfile index 4c8a37a..8bb227b 100644 --- a/Guardfile +++ b/Guardfile @@ -21,4 +21,5 @@ guard :rspec, cmd: 'bundle exec rspec --drb -f doc' do watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch(%r{^app/views/}) { 'spec/features' } + watch(%r{^app/views/api/}) { 'spec/integration' } end