Class: Smerp::Exporter::Excel::Column
- Inherits:
-
Object
- Object
- Smerp::Exporter::Excel::Column
- Defined in:
- lib/smerp/exporter/excel/excel_col.rb
Instance Method Summary collapse
-
#initialize(col) ⇒ Column
constructor
A new instance of Column.
- #method_missing(mtd, *args, &block) ⇒ Object
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 |