mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
16 lines
290 B
Ruby
16 lines
290 B
Ruby
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
|