Stendhal guard allows to automatically & intelligently launch specs using stendhal when files are modified.
-
Compatible with stendhal 0.1.9 and above.
-
Tested on Ruby 1.8.7 & 1.9.2.
Please be sure to have guard installed before continue.
Install the gem:
gem install guard-stendhal
Add it to your Gemfile (inside test group):
gem 'guard-stendhal'
Add guard definition to your Guardfile by running this command:
guard init stendhal
Please read guard usage doc
Stendhal guard can be really be adapted to all kinds of projects. Please read guard doc for more info about Guardfile DSL.
guard 'stendhal' do watch('^spec/(.*)_spec.rb') watch('^lib/(.*)\.rb') { |m| "spec/#{m[1]}_spec.rb" } watch('^spec/spec_helper.rb') { "spec" } end
guard 'stendhal' do watch('^spec/(.*)_spec.rb') watch('^app/(.*)\.rb') { |m| "spec/#{m[1]}_spec.rb" } watch('^lib/(.*)\.rb') { |m| "spec/lib/#{m[1]}_spec.rb" } watch('^spec/spec_helper.rb') { "spec" } watch('^config/routes.rb') { "spec/routing" } watch('^app/controllers/application_controller.rb') { "spec/controllers" } watch('^spec/factories.rb') { "spec/models" } end
:bundler => false # don't use "bundle exec"
-
Source hosted at GitHub
-
Report issues/Questions/Feature requests on GitHub Issues
Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change you make.
Please run “rake spec:prepare_fixtures” once before launching specs.
Acknowledgements to Thibaud Guillaume-Gentil, author of Guard :)