class CliFormat::Presenter::Base

Public Class Methods

new(options, header, rows) click to toggle source
# File lib/cli_format/presenter/base.rb, line 3
def initialize(options, header, rows)
  @options, @header, @rows = options, header, rows
  @buffer = []
end

Public Instance Methods

show() click to toggle source
# File lib/cli_format/presenter/base.rb, line 8
def show
  puts text
end