From b9cd5de1d0055cfc37fee4946b53581e13c84716 Mon Sep 17 00:00:00 2001 From: Ben Balter Date: Thu, 6 Apr 2017 19:06:31 -0400 Subject: [PATCH] remove stubbed context --- lib/jekyll-seo-tag/context.rb | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 lib/jekyll-seo-tag/context.rb diff --git a/lib/jekyll-seo-tag/context.rb b/lib/jekyll-seo-tag/context.rb deleted file mode 100644 index cb1bf1f..0000000 --- a/lib/jekyll-seo-tag/context.rb +++ /dev/null @@ -1,16 +0,0 @@ -module Jekyll - class SeoTag - # Stubbed LiquidContext to support relative_url and absolute_url helpers - class Context - attr_reader :site - - def initialize(site) - @site = site - end - - def registers - { :site => site } - end - end - end -end