class Xeroizer::Report::Base

Attributes

date[RW]
factory[R]
header[RW]
id[RW]
name[RW]
rows[RW]
sections[RW]
summary[RW]
titles[RW]
type[RW]
updated_at[RW]

Public Class Methods

new(factory) click to toggle source
# File lib/xeroizer/report/base.rb, line 31
def initialize(factory)
  @titles = []
  @rows = []
  @sections = []
  @factory = factory
end