views:

347

answers:

1

I'm looking for a library or a collection of libraries that work together with the following requirements:

  • HAML and SASS can be used.
  • Have a small server capability to see HAML/SASS compiled every time I refresh my browser. (I don't want to start a fresh Rails app, though.)
  • Works with popular CSS frameworks. (Doesn't have to be all, but major ones like 960gs and Blueprint)

Compass seems to be promissing, but it doesn't seem to support HAML. At least I'm looking for information that make Compass and HAML together.

Edit chriseppstein gave the list of cool stuff. I'll make a link to each one.

+1  A: 

There are several of these:

  • staticmatic
  • middleman
  • nanoc
  • webby

All of these support haml and sass and can be easily configured to work with compass too.

Additionally, there is "serve", which is just a simple webserver.

chriseppstein