rubygem-asciidoctor/test-install

20 lines
491 B
Plaintext
Raw Normal View History

#!/usr/bin/env ruby
# A sanity check to ensure that gem is functional after installing the package.
require 'asciidoctor'
2013-06-08 21:44:03 +00:00
source = <<EOS
= Asciidoctor
Author Name <author@example.com>
2013-06-08 21:44:03 +00:00
http://asciidoctor.org[Asciidoctor] is an _open source_ implementation of
http://asciidoc.org[AsciiDoc] in [.red]*Ruby*.
== Sample section
Sample section content
2013-06-08 21:44:03 +00:00
EOS
puts Asciidoctor.render(source, :backend => :html5, :header_footer => true, :safe => :safe, :attributes => 'idprefix= idseparator=-')