From 52707e470834dd63572db3b64a7fbb6a2ef5e7d3 Mon Sep 17 00:00:00 2001 From: Arto Bendiken Date: Fri, 18 Dec 2009 15:53:22 +0100 Subject: [PATCH] Added an 'open' task. --- Rakefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Rakefile b/Rakefile index 01ea6f6..10c79f7 100644 --- a/Rakefile +++ b/Rakefile @@ -4,6 +4,10 @@ require 'rake' task :default => [:build] +task :open => :build do + sh "open .html/index.html" +end + task :build do sh "markdoc build" end