8 lines
230 B
Ruby
Executable File
8 lines
230 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
# A sanity check to ensure that gem is functional after installing the package.
|
|
|
|
require 'asciidoctor'
|
|
|
|
puts Asciidoctor::Document.new("= Asciidoctor\n\nI'm **alive**!".lines.entries, :compact => true).render
|