TeamSpeak 3 Query Library
NOTE: This library is currently being developed and should not be used for production purposes!
An OOP library to query and manage TeamSpeak 3 servers in Ruby.
Installation
gem install teamspeak3
Getting Started
require 'teamspeak3'
server = TeamSpeak3::Server.new('127.0.0.1', 10011)
server.login 'serveradmin', 'password'
Contribution
If you want to suggest new features or report bugs, feel free to open an issue here.
If you want to contribute to the code base:
- Fork this repository
- Create a new branch
- Do your changes
- Push them to GitHub
- Open a pull request against the
master
branch