Class: Trlo::DataRow

Inherits:
Object
  • Object
show all
Defined in:
lib/trlo/data_row.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(orig, dataset) ⇒ DataRow

Returns a new instance of DataRow.



7
8
9
10
# File 'lib/trlo/data_row.rb', line 7

def initialize(orig, dataset)
  @record = orig
  @num = dataset.index(orig) + 1
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method) ⇒ Object



12
13
14
15
# File 'lib/trlo/data_row.rb', line 12

def method_missing(method)
  str = @record.send(method).to_s
  str.respond_to?(:force_encoding) ? str.force_encoding('utf-8') : Iconv.iconv('UTF-8', 'UTF-8', str)
end

Instance Attribute Details

#numObject

Returns the value of attribute num.



5
6
7
# File 'lib/trlo/data_row.rb', line 5

def num
  @num
end

#recordObject

Returns the value of attribute record.



5
6
7
# File 'lib/trlo/data_row.rb', line 5

def record
  @record
end

Instance Method Details

#to_sObject



17
18
19
# File 'lib/trlo/data_row.rb', line 17

def to_s
  @record.send(self.to_s_attribute)
end

#to_s_attributeObject



21
22
23
# File 'lib/trlo/data_row.rb', line 21

def to_s_attribute
  @n.to_s
end