# Require your plugins here require 'robut/plugin/twss' require 'robut/storage/yaml_store' # Add the plugin classes to the Robut plugin list. # Plugins are handled in the order that they appear in this array. Robut::Plugin.plugins << Robut::Plugin::TWSS # Configure the robut jabber connection and you're good to go! Robut::Connection.configure do |config| config.jid = '...@chat.hipchat.com/bot' config.password = 'password' config.nick = 'My Nick' config.room = '...@conf.hipchat.com' # Some plugins require storage Robut::Storage::YamlStore.file = ".robut" config.store = Robut::Storage::YamlStore # Add a logger if you want to debug the connection # config.logger = Logger.new(STDOUT) end