class CodeRay::WordList::CaseIgnoring
A CaseIgnoring
WordList
is like a WordList
, only that keys are compared case-insensitively (normalizing keys using downcase
).
Public Instance Methods
Source
# File lib/coderay/helpers/word_list.rb, line 62 def [] key super key.downcase end
Calls superclass method
Source
# File lib/coderay/helpers/word_list.rb, line 66 def []= key, value super key.downcase, value end
Calls superclass method