Project

jabber-bot

0.06
No commit activity in last 3 years
No release in over 3 years
Easily create simple regex powered Jabber bots.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Jabber::Bot¶ ↑

Easily create simple regex powered Jabber bots.

Jabber::Bot makes it simple to create and command your own Jabber bot. Bots are created by defining commands powered by regular expressions and Ruby.

Author

Brett Stimmerman (brettstimmerman@gmail.com)

Version

1.3.0 (2011-05-15)

Copyright

Copyright © 2011 Brett Stimmerman. All rights reserved.

License

New BSD License (opensource.org/licenses/bsd-license.php)

Website

github.com/brettstimmerman/jabber-bot

Requires¶ ↑

  • RubyGems

  • Jabber::Simple 0.8.7+

Usage¶ ↑

require 'rubygems'
require 'jabber/bot'

# Create a public Jabber::Bot
config = {
  :name      => 'SampleBot',
  :jabber_id => 'bot@example.com',
  :password  => 'secret',
  :master    => 'master@example.com',
  :is_public => true
}

bot = Jabber::Bot.new(config)

# Give your bot a private command, 'rand'
bot.add_command(
  :syntax      => 'rand',
  :description => 'Produce a random number from 0 to 10',
  :regex       => /^rand$/
) { rand(10).to_s }

# Give your bot a public command, 'puts <string>' with an alias 'p <string>'
bot.add_command(
  :syntax      => 'puts <string>',
  :description => 'Write something to $stdout',
  :regex       => /^puts\s+(.+)$/,
  :alias       => [ :syntax => 'p <string>', :regex => /^p\s+(.+)$/ ],
  :is_public   => true
) do |sender, message|
  puts "#{sender} says '#{message}'"
  "'#{message}' written to $stdout"
end

# Bring your new bot to life
bot.connect