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