We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Use action :stdout to have Herald send what it finds to Ruby's $stdout (which is generally the same a print)
action :stdout
$stdout
print
Herald.watch_twitter do _for "keywords" action :stdout end
To save results to a file, include the parameter :file => "log.txt"
:file => "log.txt"
Herald.watch_twitter do _for "newsworthy", "topic" action :stdout, :file => "log.txt" end