Sha256: e5082e84203d70c32da03a4009502c8cc4ef6d0cdf61c1becdac31475b1cd112
Contents?: true
Size: 591 Bytes
Versions: 5
Compression:
Stored size: 591 Bytes
Contents
require 'whirled_peas' class TemplateFactory def build(*) WhirledPeas.template(:test) do |composer| composer.add_grid('Alignment') do |composer, settings| settings.num_cols = 1 settings.full_border settings.align = :left # Keep the title long so grids below will be wide enough to use the # alignment attribute. Don't rely on the `width` attribute to keep # `align` isolated in this test. composer.add_text('Title') { 'This is an aligned grid' } composer.add_text('Content') { 'Left' } end end end end
Version data entries
5 entries across 5 versions & 1 rubygems