Dieter [dee-ter] is a clojure interpretation of the ruby Sprockets library.
Dieter provides you with a ring middleware which will compile certain static assets. Currently it supports concatiating javascript and CSS files, compiling LESS CSS, CoffeeScript and Haml-coffee. In addition it minifies javascript using the Google Closure compiler.
Add dieter as a dependency in leiningen
[dieter "0.2.0"]
Insert it into your ring middleware stack
(-> app
(asset-pipeline config-options))
Or if you use noir
(server/add-middleware asset-pipeline config-options)
Concatination of assets is handled by a Dieter manifest file. A manifest is a file whose name ends in .dieter and whose contents are a clojure vector of file names / directories to concatenate.
For example, a file named assets/javascripts/app.js.dieter with the following contents:
[
"./base.js"
"framework.js"
"./lib/"
"./models/"
]
Dieter would look for base.js in the same directory, framework.js in any subdirectory, and then concatenate each file from the lib and models directories.
In order to include links to your assets you may use the link-to-asset function.
(link-to-asset "javascripts/app.js" config-options)
:compress false
:asset-roots ["resources"] ; must have a folder called 'assets'
:cache-root "resources/asset-cache" ; compiled assets are cached here
:cache-mode :development ; or :production. :development disables cacheing
:log-level :normal ; or :quiet
Dieter searches for your assets in [asset-root]/assets. Compiled assets are always written to the cache-root. In production mode this means that the cached assets are served from the cache. However development mode assets are always regenerated.
Note you need to pass your config options to asset-pipeline as well as link-to-asset.
It is easy to add new preprocessors to dieter. Each preprocessor (CoffeeScript, HamlCoffee, etc) uses the default library for that language, hooked up to dieter using the Rhino JavaScript library. See src/dieter/assets/ for easy-to-follow examples.
Now it's time to dance
Copyright (C) 2012 EdgeCase
Distributed under the Eclipse Public License, the same as Clojure.
- Handlebars templates are now a separate library. dieter-ember