aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorFrederic Hemberger <mail@frederic-hemberger.de>2011-09-18 13:45:25 +0200
committerFrederic Hemberger <mail@frederic-hemberger.de>2011-09-18 13:45:25 +0200
commitf6bf89438702776896aee21cf839689355bbe203 (patch)
treeff54fc14d27e8f1fff08a9d4ff23b799b61a525d /plugins
parent41cbe7825149d1cbf97890ff1e59aac190a502ba (diff)
downloadmy_new_personal_website-f6bf89438702776896aee21cf839689355bbe203.tar.xz
my_new_personal_website-f6bf89438702776896aee21cf839689355bbe203.zip
Aligns naming of .pygments-cache, .gist-cache and .sass-cache
Diffstat (limited to 'plugins')
-rw-r--r--plugins/gist_tag.rb2
-rw-r--r--plugins/pygments_code.rb2
2 files changed, 2 insertions, 2 deletions
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