aboutsummaryrefslogtreecommitdiff
path: root/Guardfile
blob: 97f4a2bfe7fe095bb4de1d7db9986a6b7264b069 (plain)
1
2
3
4
5
6
7
8
9
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