Method: TableHelper#row

Defined in:
lib/coursegen/course/helpers/table_helpers.rb

#row(*cells) ⇒ Object



22
23
24
25
26
27
28
29
30
# File 'lib/coursegen/course/helpers/table_helpers.rb', line 22

def row(*cells)
  @bm.row_begin
  cells.each do |c|
    @bm.cell_begin
    @bm.cell_content(c)
    @bm.cell_end
  end
  @bm.row_end
end