Sha256: 9abb7a42e896588f68e6eb97e2c1f2f91d74492dc7e6507e959a9986e527429f

Contents?: true

Size: 513 Bytes

Versions: 13

Compression:

Stored size: 513 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard :minitest do
  # with Minitest::Unit
  watch(%r{^test/(.*)\/?(.*)_test\.rb$})
  watch(%r{^lib/(.*/)?([^/]+)\.rb$})     { |m| "test/#{m[1]}#{m[2]}_test.rb" }
  watch(%r{^test/test_helper\.rb$})      { 'test' }

  # watch test Rails app
  watch(%r{^test/rails_app/app/models/(.*)\.rb$})       { |m| "test/models/#{m[1]}_test.rb" }
  watch(%r{^test/rails_app/app/controllers/(.*)\.rb$})  { |m| "test/controllers/#{m[1]}_test.rb" }
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
simon_says-0.3.0.alpha.7 Guardfile
simon_says-0.3.0.alpha.6 Guardfile
simon_says-0.3.0.alpha.5 Guardfile
simon_says-0.3.0.alpha.4 Guardfile
simon_says-0.3.0.alpha.3 Guardfile
simon_says-0.3.0.alpha.1 Guardfile
simon_says-0.2.0 Guardfile
simon_says-0.1.6 Guardfile
simon_says-0.1.5 Guardfile
simon_says-0.1.0 Guardfile
simon_says-0.0.4 Guardfile
simon_says-0.0.3 Guardfile
simon_says-0.0.27b6 Guardfile