Sha256: 77734429b2392151020a754229276caa8f90135ebe29b1b50310526842819fcd
Contents?: true
Size: 676 Bytes
Versions: 2
Compression:
Stored size: 676 Bytes
Contents
# frozen_string_literal: true require 'byebug' require_relative './template' require_relative './helpers' require_relative './content_shaper' class Tabled DEFAULT_OPTIONS = { framed: true, row_separator: '-', titles: [] }.freeze attr_accessor :data, :columns_width, :content, :options def initialize(data, **options) @options = DEFAULT_OPTIONS.merge(options) @data = Tabled::Helpers.convert_to_required_structure(data) @columns_width = Tabled::Helpers.calculate_columns_width(data: data, options: @options) @content = Tabled::ContentShaper.new(data, @columns_width, @options).shape end def print_to_console print content.join("\n") end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tabled-0.0.4 | lib/tabled.rb |
tabled-0.0.3 | lib/tabled.rb |