Project

rublox

0.0
No release in over a year
This gem allows easy interaction with the Roblox web API via modules and classes.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.44.1
~> 0.9.28
~> 0.6.0

Runtime

~> 5.1.1
 Project Readme
rublox

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.