Sha256: 7872386f68506d29cdeb36a8158704ccebaecefe790fb2dc42c27e087ea1d4eb

Contents?: true

Size: 698 Bytes

Versions: 5

Compression:

Stored size: 698 Bytes

Contents

require 'whirled_peas'

class TemplateFactory
  def build(*)
    WhirledPeas.template(:test) do |composer|
      composer.add_grid do |composer, settings|
        settings.num_cols = 2
        composer.add_box('Alignment') do |composer, settings|
          settings.flow = :t2b
          settings.full_border
          settings.align = :right
          # 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 box' }
          composer.add_text('Content') { 'Right' }
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
whirled_peas-0.13.0 screen_test/settings/align/box_right.rb
whirled_peas-0.12.0 screen_test/settings/align/box_right.rb
whirled_peas-0.11.1 screen_test/settings/align/box_right.rb
whirled_peas-0.11.0 screen_test/settings/align/box_right.rb
whirled_peas-0.10.0 screen_test/settings/align/box_right.rb