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