From f6bf89438702776896aee21cf839689355bbe203 Mon Sep 17 00:00:00 2001 From: Frederic Hemberger Date: Sun, 18 Sep 2011 13:45:25 +0200 Subject: Aligns naming of .pygments-cache, .gist-cache and .sass-cache --- plugins/gist_tag.rb | 2 +- plugins/pygments_code.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/gist_tag.rb b/plugins/gist_tag.rb index 946ea23f..ac5ee3c6 100644 --- a/plugins/gist_tag.rb +++ b/plugins/gist_tag.rb @@ -16,7 +16,7 @@ module Jekyll super @text = text @cache_disabled = false - @cache_folder = File.expand_path "../_gist_cache", File.dirname(__FILE__) + @cache_folder = File.expand_path "../.gist-cache", File.dirname(__FILE__) FileUtils.mkdir_p @cache_folder end diff --git a/plugins/pygments_code.rb b/plugins/pygments_code.rb index 67ce8c34..b87413f5 100644 --- a/plugins/pygments_code.rb +++ b/plugins/pygments_code.rb @@ -2,7 +2,7 @@ require 'pygments' require 'fileutils' require 'digest/md5' -PYGMENTS_CACHE_DIR = File.expand_path('../../_code_cache', __FILE__) +PYGMENTS_CACHE_DIR = File.expand_path('../../.pygments-cache', __FILE__) FileUtils.mkdir_p(PYGMENTS_CACHE_DIR) module HighlightCode -- cgit v1.2.1