require 'active_support/core_ext/array/extract_options' require_relative 'coercers/yaml_coercer' module Csv2hash class Cell attr_accessor :rules def initialize *args self.rules = args.extract_options! Csv2hash::Coercers::YamlCoercer.new(rules).deserialize! end end end