repost/plugins/pretty_print.rb

8 lines
156 B
Ruby

require 'pp'
include EventMachine::IRC::Commands
Client.register_trigger("PRIVMSG", "pretty_print") { |msg|
puts Time.now.to_s + msg.pretty_inspect
}