diff --git a/Guardfile b/Guardfile index 242731e..4c8a37a 100644 --- a/Guardfile +++ b/Guardfile @@ -20,12 +20,5 @@ guard :rspec, cmd: 'bundle exec rspec --drb -f doc' do watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } - watch('app/controllers/application_controller.rb') { 'spec/controllers' } - watch(%r{^app/views/}) { 'spec/features' } - watch(%r{^app/views/layouts/}) { 'spec/integration' } - - watch(%r{^app/views/(.+)/(?:[^/]+).rabl}) do |m| - "spec/controllers/#{m[1]}_controller_spec.rb" - end end