NAME
Jifty::Plugin::CompressedCSSandJS
SYNOPSIS
# In your jifty config.yml under the framework section:
Plugins:
- CompressedCSSandJS:
js: 1
css: 1
jsmin: /path/to/jsmin
DESCRIPTION
This plugin provides auto-compilation and on-wire compression of your application's CSS and Javascript. It is enabled by default, unless your ConfigFileVersion
is greater or equal than 2.
It also supports js minifier, you will need to specify the full path. The jsmin can be obtained from http://www.crockford.com/javascript/jsmin.html.
Note that you will need to use ConfigFileVersion
2 to be able to configure jsmin feature.
init
Initializes the compression object. Takes a paramhash containing keys 'css' and 'js' which can be used to disable compression on files of that type.
js_enabled
Returns whether JS compression is enabled (which it is by default)
css_enabled
Returns whether CSS compression is enabled (which it is by default)
_generate_javascript
Checks if the compressed JS is generated, and if it isn't, generates and caches it.
minify_js \$js
Runs the given JS through jsmin