Sha256: bf5ac54f2d69267aaaf939e1b16e3cf01573311f682504c608fe1f1ce6953ec1
Contents?: true
Size: 318 Bytes
Versions: 2
Compression:
Stored size: 318 Bytes
Contents
# frozen_string_literal: true module RubyJard class Row extend Forwardable attr_accessor :columns, :line_limit, :content def initialize(line_limit: 1, columns: [], ellipsis: true) @content = [] @columns = columns @ellipsis = ellipsis @line_limit = line_limit end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby_jard-0.2.2 | lib/ruby_jard/row.rb |
ruby_jard-0.2.1 | lib/ruby_jard/row.rb |