# File lib/methodic_hash.rb, line 44 def method_missing(method,*args) string = method.to_s if string[string.length-1,1] == '=' self[string[0,string.length-1].to_sym] = args[0] else self[method] end end