module Smerp module Exporter module Excel class Column def initialize(col) @col = col end def method_missing(mtd, *args, &block) @col.send(mtd, *args, &block) end end end end end