13 lines
183 B
Plaintext
13 lines
183 B
Plaintext
|
guard 'compass' do
|
||
|
watch(%r{^sass/.*})
|
||
|
end
|
||
|
|
||
|
guard 'shell' do
|
||
|
watch(%r{^src/.*}) do
|
||
|
puts "Building..."
|
||
|
system %{rake build}
|
||
|
system %{open CoffeeScript.wdgt}
|
||
|
end
|
||
|
end
|
||
|
|