All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mework.cloud.spring-cloud-task-docs.3.1.2.source-code.Guardfile Maven / Gradle / Ivy

The newest version!
require 'asciidoctor'
require 'erb'

guard 'shell' do
	watch(/.*\.adoc$/) {|m|
		Asciidoctor.render_file('index.adoc', \
			  :in_place => true, \
			  :safe => Asciidoctor::SafeMode::UNSAFE, \
			  :attributes => {\
				  'source-highlighter' => 'prettify', \
				  'icons' => 'font', \
				  'linkcss' => 'true', \
				  'copycss' => 'true', \
				  'doctype' => 'book'})
	}
end

guard 'livereload' do
	watch(%r{^.+\.(css|js|html)$})
end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy