Files
Notare/lib/ezdoc/nodes/table.rb

19 lines
244 B
Ruby

# frozen_string_literal: true
module Ezdoc
module Nodes
class Table < Base
attr_reader :rows
def initialize
super
@rows = []
end
def add_row(row)
@rows << row
end
end
end
end