summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authoruvok cheetah2020-01-04 22:35:33 +0100
committeruvok cheetah2020-01-04 22:35:33 +0100
commit9a933a3aade0f9285377330d7af49db11f203950 (patch)
tree6841babb3a5b5fe3a6787fef66b8e3aa2bffc909 /Rakefile
parent1da4c5af95fe27e3c94cd56524972f096b9e5933 (diff)
Add Rakefile, and also add some ignores
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..1b30b3a
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,12 @@
+require 'jekyll'
+
+task :default => [:buildsite]
+
+desc 'Build the site'
+task :buildsite do
+ def Jekyll::env
+ "production"
+ end
+ Jekyll::Commands::Build::process({})
+end
+