mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-12-25 17:08:48 -05:00
10 lines
258 B
Plaintext
10 lines
258 B
Plaintext
|
guard 'shell' do
|
||
|
watch(/source\/sass\/(.*)\.s[ac]ss/) {|m| `compass compile` }
|
||
|
watch(%r{public/.+\.(js|html)}) {|m| `compass compile` }
|
||
|
end
|
||
|
|
||
|
guard 'livereload', :api_version => '1.6' do
|
||
|
watch(%r{public/.+\.(css)})
|
||
|
watch(%r{public/.+\.(js|html)})
|
||
|
end
|