Skip to content

Instantly share code, notes, and snippets.

@reinh
Created August 25, 2010 19:45
Show Gist options
  • Select an option

  • Save reinh/550140 to your computer and use it in GitHub Desktop.

Select an option

Save reinh/550140 to your computer and use it in GitHub Desktop.
class PluginBase
def self.inherited(subclass)
Notebot.irc.register_plugin(subclass)
end
end
module AdminUtilities
class Author < PluginBase
# ...
end
class Admin < PluginBase
# ...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment