Remove deprecated rules from guard config

This commit is contained in:
Thibault Jouan 2015-05-01 17:54:15 +00:00
parent 8e3955a97b
commit 8874d3dbcc

View File

@ -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