diff options
author | uvok cheetah | 2020-01-04 22:35:33 +0100 |
---|---|---|
committer | uvok cheetah | 2020-01-04 22:35:33 +0100 |
commit | 9a933a3aade0f9285377330d7af49db11f203950 (patch) | |
tree | 6841babb3a5b5fe3a6787fef66b8e3aa2bffc909 | |
parent | 1da4c5af95fe27e3c94cd56524972f096b9e5933 (diff) |
Add Rakefile, and also add some ignores
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | Rakefile | 12 |
2 files changed, 15 insertions, 0 deletions
@@ -3,3 +3,6 @@ vendor .bundle *.swp +*.bak +*~ + 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 + |