diff options
author | Frederic Hemberger <mail@frederic-hemberger.de> | 2011-09-18 13:45:25 +0200 |
---|---|---|
committer | Frederic Hemberger <mail@frederic-hemberger.de> | 2011-09-18 13:45:25 +0200 |
commit | f6bf89438702776896aee21cf839689355bbe203 (patch) | |
tree | ff54fc14d27e8f1fff08a9d4ff23b799b61a525d /plugins/pygments_code.rb | |
parent | 41cbe7825149d1cbf97890ff1e59aac190a502ba (diff) | |
download | my_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/pygments_code.rb')
-rw-r--r-- | plugins/pygments_code.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |