added guard stuff
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
# A sample Guardfile
|
||||
# More info at https://github.com/guard/guard#readme
|
||||
|
||||
guard 'brakeman', :run_on_start => true do
|
||||
watch(%r{^app/.+\.(erb|haml|rhtml|rb)$})
|
||||
watch(%r{^config/.+\.rb$})
|
||||
watch(%r{^lib/.+\.rb$})
|
||||
watch('Gemfile')
|
||||
end
|
||||
|
||||
guard :shell do
|
||||
watch(%r{^Gemfile|Gemfile.lock$}) { system("bundle-audit")}
|
||||
end
|
||||
Reference in New Issue
Block a user