flowerbox/Guardfile

12 lines
277 B
Plaintext
Raw Permalink Normal View History

2012-03-20 21:27:43 +00:00
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
2012-03-22 13:52:45 +00:00
2012-04-10 20:40:53 +00:00
guard 'compass', :configuration_file => 'config/compass.rb' do
watch(%r{^sass/(.*)\.s[ac]ss$})
2012-03-22 13:52:45 +00:00
end
2012-04-10 20:40:53 +00:00
guard 'haml', :input => '_layouts/haml', :output => '_layouts' do
2012-03-22 13:52:45 +00:00
watch(/^.+(\.html\.haml)/)
end