Guard makes everything easier.

This commit is contained in:
Samuel Cochran 2011-05-29 21:32:38 +08:00
parent d07a6dff46
commit df7cda92d2
1 changed files with 12 additions and 0 deletions

12
Guardfile Normal file
View File

@ -0,0 +1,12 @@
# Guardfile
# More info at https://github.com/guard/guard#readme
guard 'ego' do
watch 'Guardfile'
end
guard 'sass', :output => 'stylesheets' do
watch %r{^public/stylesheets/.+\.s[ac]ss}
end
guard 'coffeescript', :input => 'public/javascripts'