coffeescript-widget/Guardfile
2011-07-20 14:43:12 -04:00

13 lines
183 B
Ruby

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