File: Rakefile

package info (click to toggle)
i3blocks 1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 548 kB
  • sloc: ansic: 2,439; makefile: 30; javascript: 29; sh: 19
file content (8 lines) | stat: -rw-r--r-- 475 bytes parent folder | download
1
2
3
4
5
6
7
8
require 'asciidoctor'

task :default do
  Asciidoctor.convert_file 'README.adoc', safe: :unsafe, to_file: 'index.html', attributes: { 'reproducible' => true, 'toc' => 'left' }
  Asciidoctor.convert_file 'blocklets.adoc', safe: :unsafe, attributes: { 'reproducible' => true }
  Asciidoctor.convert_file 'i3blocks.1.adoc', safe: :unsafe, attributes: { 'reproducible' => true, 'toc' => 'left' }
  Asciidoctor.convert_file 'i3blocks.1.adoc', safe: :unsafe, backend: :manpage
end