tags:

views:

277

answers:

1

What's the best way to write a supybot plugin in ruby? Or other language (not python)?

+1  A: 

The short answer is, you can't. Supybot is written in Python and there is no way to load Ruby/other language module/files. Theoretically you could write the plugin in C/C++ and Supybot may attempt to load them. But you'll need to dig deep into the Python API as there are no bindings to the Supybot code.

If you prefer Ruby over Python you could use rbot an IRC bot written in Ruby.

Terence Simpson