# File lib/choice/lazyhash.rb, line 50 def method_missing(meth, *args) meth = meth.to_s if meth =~ /=/ self[meth.sub('=','')] = args.first else self[meth] end end