Guard に、haml コンパイルの出力を 2 つの異なる場所に送信してもらいたいと考えています。次のように、Guardfile で haml を 2 回呼び出してみました。
guard 'haml', :output => 'first_dir/', :input => 'src/haml' do
watch %r{^src/haml/.+(\.html\.haml)(?!(\.swp))}
end
guard 'haml', :output => 'second_dir/', :input => 'src/haml' do
watch %r{^src/haml/.+(\.html\.haml)(?!(\.swp))}
end
しかし、それは無限ループに陥るだけです。2 つの異なるディレクトリに出力するには、Guardfile をどのようにする必要がありますか?