# File basiclibrary.rb, line 113 def symbolify_keys! self.each_key{ |k| self[k.to_sym]=self.delete(k) if k.respond_to?(:to_sym) } self end