toxon
/
lita-tox
Archived
1
0
Fork 0
Tox adapter for the Lita chat bot http://lita.io
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Braiden Vasco c4449c4e0a Add argument "peer_number" for "on_group_message"
to distinguish self messages
2015-09-14 07:49:27 +00:00
bin Configure gem console 2015-09-12 17:27:41 +00:00
ext/tox Add argument "peer_number" for "on_group_message" 2015-09-14 07:49:27 +00:00
lib Add callback setters 2015-09-14 00:38:32 +00:00
locales Initialize Lita adapter 2015-07-25 12:10:34 +05:00
spec Merge branch 'master' into initialize_lita_adapter 2015-07-25 13:26:47 +05:00
.gitignore .gitignore extension files 2015-07-25 18:17:25 +05:00
.rspec Configure testing 2015-07-25 12:31:14 +05:00
.rubocop.yml Configure Travis CI 2015-07-25 12:38:42 +05:00
.simplecov Merge branch 'master' into initialize_lita_adapter 2015-07-25 13:26:47 +05:00
.travis.yml Merge branch 'master' into initialize_lita_adapter 2015-07-25 13:26:47 +05:00
.yardopts Use YARD 2015-07-25 13:02:30 +05:00
CHANGELOG.md Generate changelog 2015-09-13 20:43:38 +00:00
Gemfile Configure Coveralls 2015-07-25 12:42:19 +05:00
LICENSE Initial commit 2015-07-24 20:37:42 +00:00
README.md Specify type for attribute "savedata_filename" 2015-09-13 23:44:59 +00:00
Rakefile Add extension Rake task "tox" 2015-07-25 18:20:40 +05:00
lita-tox.gemspec Increment version (0.1.0) 2015-09-13 20:46:26 +00:00

README.md

Lita::Adapters::Tox

Gem Version Build Status Coverage Status

Tox adapter for the Lita chat bot.

WARNING

Still in development. Read the README carefully.

TODO

Current development version have some limitations which should be fixed in first release:

  • [issue #15] Only private chats are supported. Adapter will not respond to group invite

  • [issue #16] libtoxcore is not included in the gem. It should be compiled manually to build the gem native extension successfully. Follow the instructions in that file

  • [issue #17] JRuby is not supported. Only C extension for Tox is implemented

  • [issue #18] Message length is limited to value of TOX_MAX_MESSAGE_LENGTH (see source code of libtoxcore)

  • Adapter has incomplete API for Lita. Only basic methods are implemented

Usage

At first, see the documentation for Lita: http://docs.lita.io/

Installation

libtoxcore should be compiled manually at your computer or server. Follow the instructions in that file

When libtoxcore is installed, add lita-tox to your Lita instance's Gemfile:

gem 'lita-tox', '~> 0.1.0'

Configuration

Optional attributes

  • savedata_filename (String) - Path to file where Tox state will be stored (if provided)

Example

This is an example lita_config.rb file:

Lita.configure do |config|
  config.robot.name = 'Lita'
  config.robot.mention_name = 'lita'

  config.robot.adapter = :tox

  config.savedata_filename = 'savedata'
end