You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
457 B
11 lines
457 B
require 'asciidoctor' |
|
require 'erb' |
|
|
|
options = {:mkdirs => true, :safe => :unsafe, :attributes => 'linkcss'} |
|
|
|
guard 'shell' do |
|
watch(/^docs\/[A-Za-z].*\.adoc$/) {|m| |
|
Asciidoctor.load_file('docs/src/main/asciidoc/README.adoc', :to_file => './README.adoc', safe: :safe, parse: false, attributes: 'allow-uri-read') |
|
Asciidoctor.render_file('docs/src/main/asciidoc/spring-cloud-netflix.adoc', options.merge(:to_dir => 'target/generated-docs')) |
|
} |
|
end
|
|
|