From 4440f273e0ca8f8e44e9ead748f2a5ac72099d0c Mon Sep 17 00:00:00 2001 From: zachgersh Date: Tue, 28 May 2013 22:39:37 -0700 Subject: [PATCH] Added more comments as per mattr. --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index 7742633e..a8921633 100644 --- a/Rakefile +++ b/Rakefile @@ -152,7 +152,9 @@ namespace :site do task :history do # First lets go ahead and format the file correctly (mainly bullet points) puts "Generating the History doc" + # Checking to make sure the History file exists in the root of the repo if File.exist?("History.markdown") + # Read the file and save to a variable so we can do the replacements file_time = File.read("History.markdown") # Replacing the contents of the file for the markdown bullets & issue links rep_bullets = file_time.gsub(/\s{2}\*{1}/, "-")