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

16 lines
290 B
Ruby
Raw Normal View History

2013-08-18 11:20:52 -04:00
module RubyTest
include prof
prof_version = ""
prof_status = ""
def prof_init(version, status)
prof_version = version
prof_status = status
end
def prof_on_start()
prof.cons_show("RubyTest: " + prof_version + " " + prof_status)
end
end