Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 360 Bytes

CHANGELOG.md

File metadata and controls

11 lines (8 loc) · 360 Bytes

Changelog

Version 0.4.0

  • table#column now returns a column object containing cells instead of an array of cells. To allow a more consistent api for setting alignment for entire columns.
  table.column(0, align: :center) # this works
  table.column(0).align = :center # can now also do this
  table.column(0).align(:center) # and this