Minifier plugin for bunto. Minifies all html, js, css files. Simple just drop it in solution. No Java required.
This plugin:
- compress html with the help of html_press
- compress JavaScript files with the help of uglifier
- compress css files with the help of css_press
Add this line to your application's Gemfile
:
gem 'bunto-press'
And then execute:
$ bundle
Execute:
$ gem install bunto-press
Create the following plugin in your projects _plugins directory.
# _plugins/bundler.rb
require "rubygems"
require "bundler/setup"
Bundler.require(:default)
This will automatically require all of the gems specified in your Gemfile.
Create the following plugin in your projects _plugins directory.
# _plugins/bunto-press-plugin.rb
require 'bunto-press'
bunto-press:
exclude: 'atom.xml' # Exclude files from processing - file name, glob pattern or array of file names and glob patterns
js_options: {} # js minifier options
css_options: {} # css minifier options
html_options: {} # html minifier options
- add test: run against simple bunto site and check if there is no errors
- Minify JPEGs with
jpegtran
orsmush.it
(smusher) - Minify PNGs with
optipng
orsmush.it
(smusher) - Auto CSS sprites (for example sprite factory)
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request