Sha256: ae259716a0b73d163741b7f39a3dde67b3f48ffd5981b84821f48d1853a42076
Contents?: true
Size: 1.59 KB
Versions: 2
Compression:
Stored size: 1.59 KB
Contents
module RenderAsMarkdown class Table attr_accessor :columns, :rows def initialize column_titles # column_titles will be an array @columns = [*column_titles].map{|title| Column.new title} @rows = [] end def add_row row # TODO: ensure element count of row is == element count of columns # make row an array row = [*row] # add row to rows, use an array @rows << row # iterate through columns and row, add each row to their column @columns.zip(row).each {|col, val| col.add_row val.to_s} end alias_method '<<', :add_row def render # join all column headers table = @columns.map(&:render_title).join( '|' ) << "\n" # join all column lines table << @columns.map(&:render_line).join( '|' ) << "\n" # join all columns for all rows @rows.each_with_index do |row, i| table << @columns.map {|col| col.render_row i}.join( '|' ) << "\n" end # return table table end alias_method :to_s, :render end class Column attr_accessor :title, :width, :rows def initialize title @rows = [] @title = title.to_s @width = [@title.length, 1].max end def render_title @title.ljust @width end def render_line '-'.ljust @width, '-' end def render_row row_number @rows[row_number].ljust @width end def add_row string string ||= '' @rows << string update_width string.to_s.length end def update_width length @width = length if @width < length end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
render-as-markdown-0.0.5 | lib/render-as-markdown/markdown-table.rb |
render-as-markdown-0.0.4 | lib/render-as-markdown/markdown-table.rb |