Skip to content

Instantly share code, notes, and snippets.

@luugiathuy
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luugiathuy/8f91cb06870b7a672530 to your computer and use it in GitHub Desktop.
Save luugiathuy/8f91cb06870b7a672530 to your computer and use it in GitHub Desktop.
Guardfile for guard-rspec
guard 'rspec', cmd: 'bundle exec rspec' do
# run every updated spec file
watch(/^spec\/.+_spec\.rb$/)
# run the lib specs when a file in lib/ changes
watch(/^lib\/(.+)\.rb$/) { |m| "spec/lib/#{m[1]}_spec.rb" }
# run the model specs related to the changed model
watch(/^app\/(.+)\.rb$/) { |m| "spec/#{m[1]}_spec.rb" }
# run the view specs related to the changed view
watch(/^app\/(.*)(\.erb|\.haml)$/) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
# run the integration specs related to the changed controller
watch(%r{^app/controllers/(.+)_(controller)\.rb}) do
|m| "spec/requests/#{m[1]}_spec.rb"
end
# run the integration specs related to the changed view
watch(%r{^app/views/(.+)/.*\.(erb|haml|jbuilder)$}) do
|m| "spec/requests/#{m[1]}_spec.rb"
end
# run all integration tests when application controller change
watch('app/controllers/application_controller.rb') { 'spec/requests' }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment