diff --git a/Guardfile b/Guardfile new file mode 100644 index 0000000..e1fcc6a --- /dev/null +++ b/Guardfile @@ -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'