ここで説明されているガードファイルで asciidoc を使用しています。
asciidoctor オプションが与えられた場合:asciidoctor -a icons -a iconsdir /foo -a copycss bar.adoc
これらのオプションをガード ファイルに追加したいと思います。しかし、方法がわかりません。
現在、ガード ファイルは次のようになっています。
require 'asciidoctor'
require 'erb'
guard 'shell' do
watch(/^ble\.adoc$/) {|m|
Asciidoctor.render_file(m[0], :in_place => true, :backend => 'html5')
}
end
guard 'livereload' do
watch(%r{^.+\.(css|js|html)$})
end