From 78946f7d93f34fde3cd5f5f0e8972e4faa185268 Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Wed, 19 Dec 2012 19:27:14 -0700 Subject: [PATCH] a basic script to ensure that the gem is functional --- test-install | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 test-install diff --git a/test-install b/test-install new file mode 100755 index 0000000..d98785f --- /dev/null +++ b/test-install @@ -0,0 +1,7 @@ +#!/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).render