From f86ce42d38c4c4e0f0c39316a1af83b9f7fde1d2 Mon Sep 17 00:00:00 2001 From: Jason Etcovitch Date: Mon, 23 Oct 2017 15:15:27 -0400 Subject: [PATCH] Add jekyll-redirect-from plugin --- Gemfile | 3 +++ _config.yml | 1 + 2 files changed, 4 insertions(+) diff --git a/Gemfile b/Gemfile index 2887c89..0ca0432 100644 --- a/Gemfile +++ b/Gemfile @@ -5,6 +5,7 @@ require 'open-uri' versions = JSON.parse(open('https://pages.github.com/versions.json').read) rescue ">0" group :jekyll_plugins do + gem 'jekyll-redirect-from' gem 'github-pages', versions['github-pages'] gem 'jekyll-octicons' gem 'jekyll-livereload' @@ -21,3 +22,5 @@ group :test do end gem 'rb-fsevent', '0.9.8' # See issue https://github.com/guard/listen/issues/431 + +# Added at 2017-10-23 15:14:34 -0400 by jasonetcovitch: diff --git a/_config.yml b/_config.yml index 8ca0a4d..f28c243 100644 --- a/_config.yml +++ b/_config.yml @@ -37,6 +37,7 @@ defaults: layout: docs plugins: + - jekyll-redirect-from - jekyll-octicons - jekyll-sitemap - jekyll-seo-tag