packages feed

herringbone 0.0.2 → 0.0.3

raw patch · 2 files changed

+4/−4 lines, 2 files

Files

Web/Herringbone.hs view
@@ -1,5 +1,5 @@ {- |-wai-herringbone is a Haskell/Wai library for compiling and serving web assets.+herringbone is a Haskell library for compiling and serving web assets. It aims to make it dead simple to create a 'Network.Wai.Middleware' or 'Network.Wai.Application' which deals with all of your static assets, including preprocessing for languages like Fay, CoffeeScript, Sass, and LESS.@@ -21,9 +21,9 @@ >     ) > > -- You can now access assets programmatically-> asset <- findAsset hb (makeLogicalPath ["application.js"])+> asset <- findAsset hb (fromJust . makeLogicalPath $ ["application.js"]) >-> -- Or make a WAI Application to do it for you+> -- Or serve them with a Wai application > app = toApplication hb -} module Web.Herringbone (
herringbone.cabal view
@@ -1,5 +1,5 @@ name:                herringbone-version:             0.0.2+version:             0.0.3 synopsis:            A library for compiling and serving static web assets. description:         A library for compiling and serving static web assets. For more information, please see <https://github.com/hdgarrood/herringbone>. license:             MIT