0.02
No commit activity in last 3 years
No release in over 3 years
easy-gtalk-bot lets you create and run GTalk bot in 5 minutes
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.5
 Project Readme

easy-gtalk-bot

A very easy tool for creating Google Talk bots

It’s really easy!

Installation

sudo gem install easy-gtalk-bot

Usage

Getting online

require 'easy-gtalk-bot'

bot = GTalk::Bot.new(:email => "easy.bot@gmail.com", :password => 'sekrit')
bot.get_online

On invitation

bot.on_invitation do |inviter|
  puts "I have been invited by #{inviter}. Yay!"

  # do something useful

  bot.accept_invitation(inviter)
  bot.message(inviter, "Hello there! Thanks for invitation!")
end

On message

bot.on_message do |from, text|
  puts "I got message from #{from}: '#{text}'"

  # do something useful

  bot.message from, "I heard that!"
end

Going infinite

# Don't be confused with the name of this method.
# We actually keep the current (main) thread alive while letting listener thread to do its job.
# So we have no need to set up an any infinite loop.
Thread.stop

To-do

bot.get_online :invisible => true

bot.set_status :away

GTalk::Account('john.smith@gmail.com').available?

bot.contact_list # => Array

bot.in_contact_list?('john.smith@gmail.com')

Copyright © 2010 Daniel Vartanov, released under the MIT license