From 9e2fc76fc58bb3703c1a1529f4b5952f38923ef7 Mon Sep 17 00:00:00 2001 From: David Majda Date: Sun, 15 Aug 2010 19:14:43 +0200 Subject: [PATCH] Rakefile: Rename "metaparser" task to "parser" This is more consistent with nomenclature in the code and with the file names. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index a769c20..851664f 100644 --- a/Rakefile +++ b/Rakefile @@ -17,7 +17,7 @@ def preprocess(input, base_dir) end desc "Generate the grammar parser" -task :metaparser do +task :parser do system "#{BIN_DIR}/pegjs PEG.parser #{SRC_DIR}/parser.pegjs" end