mirror of
https://github.com/moparisthebest/mailcatcher
synced 2024-11-12 04:05:01 -05:00
13 lines
250 B
Plaintext
13 lines
250 B
Plaintext
|
# 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'
|