A CaseIgnoring WordList is like a WordList, only that keys are compared
case-insensitively (normalizing keys using downcase
).
# File lib/coderay/helpers/word_list.rb, line 67 def [] key super key.downcase end
# File lib/coderay/helpers/word_list.rb, line 71 def []= key, value super key.downcase, value end