0.0
No commit activity in last 3 years
No release in over 3 years
Gives Cinch IRC bots ability to respond as CleverBot
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 2.0.3
~> 0.1.1
 Project Readme

Cinch-CleverBot

Description

This very simple bot that gives Cinch IRC bots ability to respond as CleverBot when directly asked a question.

<user> MyBot: Hello, how are you?
<MyBot> user: Good you?

Installation

RubyGems

You can install the latest Cinch-CleverBot gem using RubyGems

gem install cinch-cleverbot

GitHub

Alternatively you can check out the latest code directly from Github

git clone http://github.com/caitlin/cinch-cleverbot.git

Usage

Install the gem and load it in your Cinch bot:

require "cinch"
require "cinch/plugins/cleverbot"

bot = Cinch::Bot.new do
  configure do |c|
    # add all required options here
    c.plugins.plugins = [Cinch::Plugins::CleverBot] # optionally add more plugins
  end
end

bot.start