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