Methods

CodeRay::WordList::CaseIgnoring

A CaseIgnoring WordList is like a WordList, only that keys are compared case-insensitively (normalizing keys using downcase).

Public Instance Methods

[](key) click to toggle source
    # File lib/coderay/helpers/word_list.rb, line 67
67:     def [] key
68:       super key.downcase
69:     end
[]=(key, value) click to toggle source
    # File lib/coderay/helpers/word_list.rb, line 71
71:     def []= key, value
72:       super key.downcase, value
73:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.