Triton is an implementation of the event/listener pattern like EventEmitter on Node.js.
gem install triton
require 'triton'
Triton::Messenger.on(:alert) { puts "alert!" }
Triton::Messenger.emit(:alert)
# -> alert!
Released under the MIT License. See the LICENSE file for further details.