# File lib/hashr.rb, line 62 def method_missing(name, *args, &block) case name.to_s[-1, 1] when '?' !!self[name.to_s[0..-2]] when '=' self[name.to_s[0..-2]] = args.first else self[name] end end