Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thumblemonks/smurf
Rails plugin to automatically minify JavaScript and CSS when their bundles get cached
https://github.com/thumblemonks/smurf
Last synced: 3 months ago
JSON representation
Rails plugin to automatically minify JavaScript and CSS when their bundles get cached
- Host: GitHub
- URL: https://github.com/thumblemonks/smurf
- Owner: thumblemonks
- License: mit
- Created: 2008-10-30T20:31:00.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2011-08-14T19:13:22.000Z (over 13 years ago)
- Last Synced: 2024-07-20T04:43:50.555Z (4 months ago)
- Language: Ruby
- Homepage: http://gusg.us/code/ruby/smurf-rails-autominifying-js-css-plugin.html
- Size: 250 KB
- Stars: 193
- Watchers: 5
- Forks: 12
- Open Issues: 10
-
Metadata Files:
- Readme: README.markdown
- License: MIT-LICENSE
Awesome Lists containing this project
README
# Smurf
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 waySmurf will work with most versions of Rails `2.3.x` and above; including Rails `3.0.0`.
### JSmin
It's really an adaptation of Uladzislau Latynski's [jsmin.rb](http://javascript.crockford.com/jsmin.rb) port of Douglas Crockford's [jsmin.c](http://javascript.crockford.com/jsmin.c) library.
### Smurf CSS Compressor
The following are the rules I applied, gathered from various perusals around the Internet*s*
1. Replace consecutive whitespace characters with a single space
2. Remove whitespace around opening brackets
3. Remove whitespace in front of closing brackets
4. Remove the semi-colon just before the closing bracket
5. Remove comments between `/* ... */` - this could be a problem (esp. for CSS hacks)
6. Remove spaces around `;`, `:`, and `,` characters
7. Ensure whitespace between closing brackets and periods
8. Preserves [conditional comments](http://msdn.microsoft.com/en-us/library/121hztk3(VS.94\).aspx) in IE (ex: `/*@cc_on document.write("this will only write in IE") @*/`)## Installation
You install Smurf as a gem:
sudo gem install smurf
Because this latest version is intended to work with Rails 3 and above, you'll need to update your Gemfile ad add:
gem '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.perform_caching = true
### Small suggestion
[bcarpenter](http://github.com/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](http://github.com/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/*
## Testing
Simple:
rake
If you want to play around with different versions, you'll need to update the Gemfile version of rails. While Smurf itself should work as is with Rails 3 and Rails 2.3.x, the test setup is different enough between 3 and 2.3.x that I can't make guarantees. Currently tests require Rails 3 to be run successfully. If you need a previous version of smurf, look for the appropriate tag in the source code.
## Meta
Author: Justin Knowlden
Contributions from: Lance Ivy, Scott White, Daniel Schierbeck, Paul Hepworth
See MIT-LICENSE for licensing information