class CodeRay::WordList

def add words, value = true

Returns +self+, so you can concat add calls.

Add words to the list and associate them with +value+.
def add words, value = true
  words.each { |word| self[word] = value }
  self
end