This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object
18
19
20
21
22
23
24
# File 'lib/superhash.rb', line 18defmethod_missing(method,*args,&block)Superhash.keys_for(method).eachdo|key|returnself[key]ifself.key?(key)endsuperend