Sha256: b8e8b776afd5ab9998c4a04a55f175771dde3872cd70a60926c2b8ba9ac53489
Contents?: true
Size: 1.92 KB
Versions: 11
Compression:
Stored size: 1.92 KB
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme ## Uncomment and set this to only include directories you want to watch # directories %w(app lib config test spec feature) ## Uncomment to clear the screen before every task clearing :on ## Guard internally checks for changes in the Guardfile and exits. ## If you want Guard to automatically start up again, run guard in a ## shell loop, e.g.: ## ## $ while bundle exec guard; do echo "Restarting Guard..."; done ## ## Note: if you are using the `directories` clause above and you are not ## watching the project directory ('.'), the you will want to move the Guardfile ## to a watched dir and symlink it back, e.g. # # $ mkdir config # $ mv Guardfile config/ # $ ln -s config/Guardfile . # # and, you'll have to watch "config/Guardfile" instead of "Guardfile" guard :minitest do # with Minitest::Unit # watch(%r{^test/(.*)\/?test_(.*)\.rb$}) # watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| "test/#{m[1]}test_#{m[2]}.rb" } # watch(%r{^test/test_helper\.rb$}) { 'test' } # with Minitest::Spec # watch(%r{^spec/(.*)_spec\.rb$}) # watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } # watch(%r{^spec/spec_helper\.rb$}) { 'spec' } watch(%r{^test/(.*)_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "test/#{m[1]}_spec.rb" } watch(%r{^test/spec_helper\.rb$}) { 'test' } # Rails 4 # watch(%r{^app/(.+)\.rb$}) { |m| "test/#{m[1]}_test.rb" } # watch(%r{^app/controllers/application_controller\.rb$}) { 'test/controllers' } # watch(%r{^app/controllers/(.+)_controller\.rb$}) { |m| "test/integration/#{m[1]}_test.rb" } # watch(%r{^app/views/(.+)_mailer/.+}) { |m| "test/mailers/#{m[1]}_mailer_test.rb" } # watch(%r{^lib/(.+)\.rb$}) { |m| "test/lib/#{m[1]}_test.rb" } # watch(%r{^test/.+_test\.rb$}) # watch(%r{^test/test_helper\.rb$}) { 'test' } end
Version data entries
11 entries across 11 versions & 2 rubygems