This commit is contained in:
Colin Surprenant 2011-12-08 13:50:13 -05:00
parent 10019ec0b6
commit 79acca7428
1 changed files with 1 additions and 1 deletions

View File

@ -2,5 +2,5 @@ require 'red_storm'
class ExclamationBolt < RedStorm::SimpleBolt
output_fields :word
on_receive (:ack => true, :anchor => true) {|tuple| tuple.getString(0) + "!!!"}
on_receive(:ack => true, :anchor => true) {|tuple| tuple.getString(0) + "!!!"}
end