rublox


gem gem version license: MIT commit activity repo stars docs
rublox is a Roblox web API wrapper written in Ruby. It aims to provide an object oriented interface to get and modify data from Roblox's web API.


Getting Started

Authentication can be done by setting the .ROBLOSECURITY cookie through Rublox.roblosecurity=

require "rublox"

Rublox.roblosecurity = "cookie"

require "dotenv"
Dotenv.load

Rublox.roblosecurity = ENV["ROBLOSECURITY"]

All classes representing the Roblox API models should not be initialised by the user. Instead, they are all made through methods in modules and classes. Models can be found by searching through classes:

And methods for getting the corresponding model can be found by searching through methods:

Documentation

You can access the documentation at https://rubydoc.info/gems/rublox.