Skip to content
lukes edited this page May 4, 2011 · 2 revisions

Tell Herald what keywords to watching by using _for

Herald.watch_twitter do
  _for "keywords"
end

Multiple keywords

_for can always take an Array of keywords instead of a String

Herald.watch_twitter do
  _for ["keyword1", "keyword2"]
end

The Array list works like a Boolean logic or (rather than and)

See also