From 338f2f267351c9d26324510ba7fe1a77681fdd23 Mon Sep 17 00:00:00 2001 From: Denis Savitskiy Date: Sat, 21 Feb 2015 01:13:10 +0300 Subject: [PATCH] Default rake task is 'book:build'. To build book, simply run ``` bundle exec rake ``` --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index 94ec2df0f..602386729 100644 --- a/Rakefile +++ b/Rakefile @@ -26,3 +26,5 @@ namespace :book do puts " -- PDF output at progit.pdf" end end + +task :default => "book:build"