Sha256: aa4ba153802c57de70e15ec4f467d2d3f00bc9b084d92bdc4fe1253be30903ce

Contents?: true

Size: 291 Bytes

Versions: 2

Compression:

Stored size: 291 Bytes

Contents

class TableMarkupHelper
  def self.begin properties
    @th = TableHelper.new(properties)
    ""
  end

  def self.headers(labels)
    @th.headers(*labels.split("\;"))
    ""
  end

  def self.row(cells)
    @th.row(*cells.split("\;"))
    ""
  end

  def self.end
    @th.render
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
coursegen-0.9.25 lib/coursegen/course/helpers/table_markup_helper.rb
coursegen-0.9.24 lib/coursegen/course/helpers/table_markup_helper.rb