1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00
profanity/plugins/RubyTest.rb

18 lines
469 B
Ruby
Raw Normal View History

2013-08-18 15:11:16 -04:00
module RubyTest
def RubyTest.prof_init(version, status)
2013-08-18 17:22:14 -04:00
Prof::cons_show("RubyTest: init, " + version + ", " + status)
end
def RubyTest.prof_on_start()
Prof::cons_show("RubyTest: on_start")
end
def RubyTest.prof_on_connect()
Prof::cons_show("RubyTest: on_connect")
end
def RubyTest.prof_on_message_received(jid, message)
Prof::cons_show("RubyTest: on_message_received, " + jid + ", " + message)
2013-08-18 15:11:16 -04:00
end
end