effigy icon indicating copy to clipboard operation
effigy copied to clipboard

Ruby views without a templating language

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.

template = %{
  
    
      
    
    
      

View more

There aren't any comments for this post.

} class PostView url_for(comment)) end remove('#no-comments') if post.comments.any? end end view = PostView.new(post) document = view.render_html_document(template) # Result document: # # # Post title - Site title # # #

Post title

#

Post body

#
#

First comment title

#

First comment body

# View more #
#
#

Second comment title

#

Second comment body

# View more #
# #

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:

class PostView  url_for(comment))
    end
    find('#no-comments').remove if post.comments.any?
  end
end

#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:

# app/controllers/magic_controller.rb
class MagicController 
# app/views/magic/index.html.effigy
class MagicIndexView 
# app/templates/magic/index.html

Spell name goes here

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

h2. Install

Effigy is distributed as a gem through gemcutter:

sudo gem install effigy -s http://gemcutter.org

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.