Sha256: 465a706146339d4ced40dacb6aa030b8588a7f1f6d65f5847c9c3a3eef0292b1

Contents?: true

Size: 1.4 KB

Versions: 656

Compression:

Stored size: 1.4 KB

Contents

module Fastlane
  class MarkdownTableFormatter
    # taken from: https://github.com/benbalter/markdown-table-formatter
    def initialize(string, header = true)
      @doc = string
      @header = header
    end

    # converts the markdown string into an array of arrays
    def parse
      @table = []
      rows = @doc.split(/\r?\n/)
      rows.each do |row|
        row_array = row.split("|")
        row_array.each(&:strip!)
        @table.push(row_array)
      end
      @table.delete_at(1) if @header # strip header separator
      @table
    end

    def table
      @table ||= parse
    end

    def column_width(column)
      width = 0
      table.each do |row|
        length = row[column].strip.length
        width = length if length > width
      end
      width
    end

    def pad(string, length)
      string.strip.ljust(length, ' ')
    end

    def separator(length)
      "".ljust(length, '-')
    end

    def header_separator_row
      output = []
      [*0...table.first.length].each do |column|
        output.push(separator(column_width(column)))
      end
      output
    end

    def to_md
      output = ""
      t = table.clone
      t.insert(1, header_separator_row) if @header
      t.each_with_index do |row, index|
        row.map!.with_index { |cell_row, index_row| pad(cell_row, column_width(index_row)) }
        output += "#{row.join(' | ').lstrip} |\n"
      end
      output
    end
  end
end

Version data entries

656 entries across 656 versions & 5 rubygems

Version Path
fastlane-2.81.0.beta.20180204010002 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.81.0.beta.20180203010003 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.81.0.beta.20180202010003 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.80.0 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.80.0.beta.20180201010003 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.80.0.beta.20180131010003 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.80.0.beta.20180130010002 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.79.0 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.79.0.beta.20180129010003 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.79.0.beta.20180128010002 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.79.0.beta.20180127010003 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.79.0.beta.20180126010002 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.79.0.beta.20180125010002 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.79.0.beta.20180124010003 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.79.0.beta.20180123010002 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.78.0 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.78.0.beta.20180122010003 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.78.0.beta.20180121010003 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.78.0.beta.20180120010003 fastlane/lib/fastlane/markdown_table_formatter.rb
fastlane-2.78.0.beta.20180119010003 fastlane/lib/fastlane/markdown_table_formatter.rb