Class: Smerp::Exporter::Excel::Column

Inherits:
Object
  • Object
show all
Defined in:
lib/smerp/exporter/excel/excel_col.rb

Instance Method Summary collapse

Constructor Details

#initialize(col) ⇒ Column

Returns a new instance of Column.



7
8
9
# File 'lib/smerp/exporter/excel/excel_col.rb', line 7

def initialize(col)
  @col = col
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(mtd, *args, &block) ⇒ Object



11
12
13
# File 'lib/smerp/exporter/excel/excel_col.rb', line 11

def method_missing(mtd, *args, &block)
  @col.send(mtd, *args, &block)
end