mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-01-01 01:16:26 +00:00
10 lines
258 B
Ruby
10 lines
258 B
Ruby
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
|