Sha256: 27c4ee987f46cf51bf23c06eafa22104a603c34e7eb1799663e83376a17fe9e6
Contents?: true
Size: 1.01 KB
Versions: 9
Compression:
Stored size: 1.01 KB
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' # Ignore personal messages # config.enable_private_messaging = false # 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
9 entries across 9 versions & 2 rubygems