Class: Rfm::CaseInsensitiveHash
- Inherits:
-
Hash
- Object
- Hash
- Rfm::CaseInsensitiveHash
- Defined in:
- lib/rfm/utilities/case_insensitive_hash.rb
Direct Known Subclasses
Factory::DbFactory, Factory::LayoutFactory, Factory::ScriptFactory, Record
Instance Method Summary collapse
Instance Method Details
#[](key) ⇒ Object
6 7 8 |
# File 'lib/rfm/utilities/case_insensitive_hash.rb', line 6 def [](key) super(key.downcase) end |
#[]=(key, value) ⇒ Object
3 4 5 |
# File 'lib/rfm/utilities/case_insensitive_hash.rb', line 3 def []=(key, value) super(key.downcase, value) end |