0.0
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
A fully featured wrapper to the Cleverbot.io web API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 3.8
 Project Readme

cleverbot.io

Gem Version Slack Status

A Ruby wrapper for the cleverbot.io API.

Important: For all I know, the cleverbot.io API does not work anymore. This gem, therefore, will not be kept up to date in terms of its dependencies (oj and httpclient) Though this project is part of the Cleverbot IO project, I have nothing to do with and am not responsible for the maintenance of the Cleverbot IO API itself. The maintainer of the API has gone MIA. If your application still requires this gem, you should remove it.

Installation

Ruby Gems

$ gem install cleverbot_io

Bundler

Add this line to your Gemfile:

gem 'cleverbot_io'

And then execute:

$ bundle install

Usage

Be sure to look at the actual documentation for the cleverbot.io API when you are not sure about something. Or ask for documentation clarification in the issue tracker here.

Before using this module, please get your API keys at http://cleverbot.io/keys.

require 'cleverbot'

# Create a new Cleverbot instance, with an optional reference nick set.
friend = Cleverbot.new('api_user', 'api_key', 'Ricardo')

# Talk with your pal, Cleverbot.
friend.say('Why am I still talking to you?')
# => 'Because you have a beautiful soul.'