Sha256: ab198c8f1e731a4b5d89f62a92a796a5e182fdd3350876ff0c5a4f68113cd644
Contents?: true
Size: 963 Bytes
Versions: 2
Compression:
Stored size: 963 Bytes
Contents
# 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| # Note that the jid must end with /bot if you don't want robut to # spam the channel, as described by the last bullet point on this # page: https://www.hipchat.com/help/category/xmpp config.jid = '...@chat.hipchat.com/bot' config.password = 'password' config.nick = 'Bot Nick' config.room = '...@conf.hipchat.com' # Custom @mention name # config.mention_name = 'Bot' # 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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
robut-0.5.0 | examples/Chatfile |
robut-0.4.0 | examples/Chatfile |