Smurf is a Rails plugin that does Javascript and CSS minification the way you would expect. See, with Rails 2.x
we got this cool new :cache
option on javascript_include_tag
and stylesheet_link_tag
, but no option for minifying the cached file(s).
Smurf ends that. Smurf - if installed and when caching is enabled for the environment - will nab the concatenated file content from Rails just before it saves it and minifies the content using either JSmin or a custom CSS compressor.
Some cool things about Smurf, which also allude to the reasons I wrote it:
- Smurf will only run when Rails needs to cache new files
- It will never run on its own
- It requires absolutely no configuration
- Other than installing it, you don't need to do anything
- It just gets out of your way
Smurf will work with any version of Rails 2.x
; including Rails 2.3.4
and 2.1.2
.
It's really an adaptation of Uladzislau Latynski's jsmin.rb port of Douglas Crockford's jsmin.c library.
The following are the rules I applied, gathered from various perusals around the Internets
- Replace consecutive whitespace characters with a single space
- Remove whitespace around opening brackets
- Remove whitespace in front of closing brackets
- Remove the semi-colon just before the closing bracket
- Remove comments between
/* ... */
- this could be a problem (esp. for CSS hacks) - Remove spaces around
;
,:
, and,
characters - Ensure whitespace between closing brackets and periods
I like gems. So, I suggest you install Smurf as gem. It's pretty simple, assuming you have added Gem Cutter to your list of gem sources. If you have not, do this:
sudo gem sources -a http://gemcutter.org
Then, install Smurf as a gem:
sudo gem install smurf
Then, wherever you define javascript_include_tag
or stylesheet_link_tag
, make sure to add the standard :cache => true
or :cache => 'some_bundle'
options.
Also make sure to at least have this setting in your production.rb:
config.action_controller.perform_caching = true
If you really feel like it, go ahead and install Smurf as a plugin. This should do it:
./script/plugin install git://github.com/thumblemonks/smurf.git
Then do the other stuff for setting up Smurf in your Rails environment.
bcarpenter reminded all of us that Rails will generate real files if you set config.action_controller.perform_caching
to true
. If you happen to do this while developing your fantastic Rails app you may also accidentally commit them to your development repository. This is not what you want as it can send you and your awesome developer friends down the wrong rabbit hole ... and then when you figure out the problem you may be understandably and misguidedly pissed at Smurf :)
bcarpenter didn't seem too mad since he reached out to me (whew!) and suggested I add a little comment about making sure to ignore the generated cache files/directories in your SCM of choice. If you happen to be using git, be sure to do something to the effect of the following in your .gitignore
file:
public/*/cache/*
If you want to test Smurf and you don't want to test with the latest version of Rails, then do something like the following (using 2.3.4 as an example):
rake RAILS_GEM_VERSION=2.3.4
This is the mechanism I used for testing that Smurf works for all versions:
rake && rake RAILS_GEM_VERSION=2.2.2 && rake RAILS_GEM_VERSION=2.1.2
Author: Justin Knowlden [email protected]
Contributions from: Lance Ivy, Scott White, Daniel Schierbeck
See MIT-LICENSE for licensing information