summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authoreliseo papa <elipapa@alum.mit.edu> 2012-10-26 14:53:24 +0100
committereliseo papa <elipapa@alum.mit.edu> 2012-10-26 14:53:24 +0100
commit4f9ff8fe47b346a8886ba098b8cd0d81237fb9a8 (patch)
treecf1e6bef180818f360e722c232bb16db053fcdf6 /Rakefile
parent81d94cb0991b70c9a8ce6ff2815b747f6842f25c (diff)
using rake+jekyll instead of a stupid script
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..dc1ce9e
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,9 @@
+task :pdf => "_site/index.html" do
+ sh "wkhtmltopdf _site/index.html cv_eliseo_papa.pdf"
+end
+
+file "_site/index.html" do
+ sh "jekyll"
+end
+
+task :default => ["html"] \ No newline at end of file