Class OpenWFE::SymbolHash
In: lib/openwfe/utils.rb
Parent: Hash

(2008.03.12 Deprecated, kept here for a while for backward compatibility)

A simple Hash that accepts String or Symbol as lookup keys []

Methods

[]  

Public Instance methods

[Source]

     # File lib/openwfe/utils.rb, line 355
355:         def [] (key)
356:             super(key.to_s)
357:         end

[Validate]