Class: Unresponsys::SupplementalTable

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/unresponsys/supplemental_table.rb

Defined Under Namespace

Classes: Rows

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(folder, table_name) ⇒ SupplementalTable

Returns a new instance of SupplementalTable.



7
8
9
10
# File 'lib/unresponsys/supplemental_table.rb', line 7

def initialize(folder, table_name)
  @folder = folder
  @name   = table_name
end

Instance Attribute Details

#folderObject (readonly)

Returns the value of attribute folder.



5
6
7
# File 'lib/unresponsys/supplemental_table.rb', line 5

def folder
  @folder
end

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/unresponsys/supplemental_table.rb', line 5

def name
  @name
end

Instance Method Details

#rowsObject



12
13
14
# File 'lib/unresponsys/supplemental_table.rb', line 12

def rows
  @rows ||= Rows.new(self)
end