effigy

Ruby views without a templating language

MIT License

Downloads
30K
Stars
206
Committers
2

h1. Effigy

Create usable views in Ruby with HTML and CSS selectors.

h2. Synopsis

In Effigy, your view is a Ruby class that performs transformation on an HTML template. The template is passed to a render method, which calls a private #transform method to apply the transformations. The transformed template is then returned as a string of HTML.

See the documentation for more information on available transformations.

h2. Chaining

If you prefer, you can select elements and then apply tranformations in a chain. The previous example could have been written like this:

#find is also aliased as #f for brevity, if you're into that sort of thing.

h2. Rails

Effigy integrates with Rails. It provides a view subclass that copies instance variables from the controller, a template handler to find Effigy views and templates, and a generator to create skeleton view files.

Example:

View this example in your browser and you'll see "hocus pocus."

h2. Install

Effigy is distributed as a gem through gemcutter:

Effigy requires Nokogiri.

h2. Why?

Effigy is based on the idea that putting behavior in your templates is confusing and makes them difficult to maintain, and that the closer an ERB template gets to 50% Ruby, 50% HTML, the closer it gets to total chaos. Complicated views require unintuitive concepts (ERB buffers, capture blocks, etc). ERB also has the constant threat of unescaped user input slipping into a view.

Effigy was created because I have never liked interpolation-based templating languages like ERB and because XSLT requires introducing another language (and I like Ruby just fine).

h2. Author

Effigy was written by Joe Ferris. See LICENSE for license info.