coffeescript-widget/Guardfile

13 lines
183 B
Plaintext
Raw Permalink Normal View History

2011-07-20 18:43:12 +00:00
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