add svg to guardfile

This commit is contained in:
Felix Niklas 2014-10-07 21:15:41 +02:00
parent 8cb885cbb6
commit 7e068c0e75

View file

@ -7,5 +7,5 @@ guard 'livereload' do
watch(%r{public/.+\.(css|js|html)})
watch(%r{config/locales/.+\.yml})
# Rails Assets Pipeline
watch(%r{(app|vendor)(/assets/\w+/(.+\.(css|js|html|png|jpg))).*}) { |m| "/assets/#{m[3]}" }
watch(%r{(app|vendor)(/assets/\w+/(.+\.(css|js|html|png|jpg|svg))).*}) { |m| "/assets/#{m[3]}" }
end