Module: Jekyll::Gzip

Defined in:
lib/jekyll/gzip/compressor.rb,
lib/jekyll/gzip.rb,
lib/jekyll/gzip/config.rb,
lib/jekyll/gzip/version.rb

Overview

The main namespace for Jekyll::Gzip. Includes the Compressor module which is used to map over files, either using an instance of Jekyll::Site or a directory path, and compress them using Zlib.

Defined Under Namespace

Modules: Compressor

Constant Summary collapse

DEFAULT_CONFIG =
{
  'extensions' => [
    '.html',
    '.css',
    '.js',
    '.json',
    '.txt',
    '.ttf',
    '.atom',
    '.stl',
    '.xml',
    '.svg',
    '.eot'
  ].freeze,
  'replace_files' => false
}.freeze
VERSION =
"2.5.1"