Sha256: 09622e3214e8a600720ab39d79b20afd1211ac13c064650773999929fce618cd
Contents?: true
Size: 233 Bytes
Versions: 18
Compression:
Stored size: 233 Bytes
Contents
module SimplerWorkflow module OptionsAsMethods def method_missing(meth_name, *args) if @options.has_key?(meth_name.to_sym) @options[meth_name.to_sym] = args[0] else super end end end end
Version data entries
18 entries across 18 versions & 1 rubygems