Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Michael Daines http://www.mdaines.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Custom captures

I made a layout with some slightly ugly code for making rounded boxes with CSS and HTML, and wanted a way to automate the boxes. I had thought of having two functions to print starting and ending code, but this seems nicer.

This goes with the other application helpers:

  def rounded_box(&block)
    concat '<div class="rounded"><div class="top"></div><div class="body">' + capture(&block) + '</div><div class="bottom"></div></div>', block.binding
  end


This goes in a view:

<% rounded_box do %>

... stuff to put in the rounded box ...

<% end %>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS