Class: OpenWFE::SymbolHash

Inherits:
Hash
  • Object
show all
Defined in:
lib/openwfe/utils.rb

Overview

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

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

Instance Method Summary collapse

Instance Method Details

#[](key) ⇒ Object



355
356
357
# File 'lib/openwfe/utils.rb', line 355

def [] (key)
    super(key.to_s)
end