Ruby Library
This is a community maintained Ruby Library for top.gg, if you have any issues/bugs please submit an issue on our github.
Documentation
Installation
gem install topgg
Autoposting Statistics
require 'topgg'
require 'discordrb'
bot = Discordrb::Bot.new token: "TOKEN"
client = Topgg.new("AUTH_TOKEN", "BOTID")
bot.ready do |event|
client.auto_post_stats(bot) # The discordrb bot client.
end
bot.run
Example Usage
Here's an example on how to use the library!
require 'topgg'
bot = Discordrb::Bot.new token: "TOKEN"
client = Topgg.new("AUTH_TOKEN", "BOTID")
# check if the speicified user id voted or not.
p client.voted?("1234")
You can check out the API Reference to know about the other methods!