Class: PDFGen::DsBase

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/data/ds_base.rb

Direct Known Subclasses

DsActiveRecord, DsHash

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ DsBase

Returns a new instance of DsBase.



7
8
9
# File 'lib/data/ds_base.rb', line 7

def initialize(data)
  raise "Not Implemented"
end

Instance Method Details

#bodyObject



15
16
17
# File 'lib/data/ds_base.rb', line 15

def body
  raise "Not Implemented"
end

#columnsObject



11
12
13
# File 'lib/data/ds_base.rb', line 11

def columns
  raise "Not Implemented"
end

#eachObject



19
20
21
# File 'lib/data/ds_base.rb', line 19

def each
  raise "Not Implemented"
end