mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
10 lines
250 B
Text
10 lines
250 B
Text
|
# A sample Guardfile
|
||
|
# More info at https://github.com/guard/guard#readme
|
||
|
|
||
|
guard :rspec do
|
||
|
watch(%r{^spec/.+_spec\.rb$})
|
||
|
watch(%r{^lib/rails_multisite/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
|
||
|
watch('spec/spec_helper.rb') { "spec" }
|
||
|
end
|
||
|
|