Class: CodeRay::WordList::CaseIgnoring
- Inherits:
-
CodeRay::WordList
- Object
- Hash
- CodeRay::WordList
- CodeRay::WordList::CaseIgnoring
- Defined in:
- lib/coderay/helpers/word_list.rb
Overview
A CaseIgnoring WordList is like a WordList, only that keys are compared case-insensitively (normalizing keys using downcase
).
Instance Method Summary collapse
Methods inherited from CodeRay::WordList
Constructor Details
This class inherits a constructor from CodeRay::WordList
Instance Method Details
#[](key) ⇒ Object
62 63 64 |
# File 'lib/coderay/helpers/word_list.rb', line 62 def [] key super key.downcase end |
#[]=(key, value) ⇒ Object
66 67 68 |
# File 'lib/coderay/helpers/word_list.rb', line 66 def []= key, value super key.downcase, value end |