From 0b6797efdc994f0e6cbaff5e36b4a80366ab43ed Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fran=C3=A7ois=20Michonneau?= Date: Wed, 11 Dec 2019 14:59:47 -0500 Subject: [PATCH] install gems locally --- .gitignore | 1 + Makefile | 2 +- bin/boilerplate/_config.yml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2776745..2f3299e 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,5 @@ _site .Rproj.user .Rhistory .RData +.vendor/ Gemfile.lock \ No newline at end of file diff --git a/Makefile b/Makefile index 5c9eba0..124e397 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,8 @@ # Settings MAKEFILES=Makefile $(wildcard *.mk) JEKYLL_VERSION=3.8.5 -JEKYLL=bundle update && bundle exec jekyll JEKYLL_DOCKER=${JEKYLL} serve --host 0.0.0.0 +JEKYLL=bundle install --path .vendor/bundle && bundle update && bundle exec jekyll PARSER=bin/markdown_ast.rb DST=_site diff --git a/bin/boilerplate/_config.yml b/bin/boilerplate/_config.yml index fb6359c..a1b32fe 100644 --- a/bin/boilerplate/_config.yml +++ b/bin/boilerplate/_config.yml @@ -91,6 +91,7 @@ exclude: - Makefile - bin/ - .Rproj.user/ + - .vendor/ # Turn on built-in syntax highlighting. highlighter: rouge -- 2.30.2