Project

rextester

0.0
No release in over 3 years
Low commit activity in last 3 years
Interface for rextester api.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 0.17.1
 Project Readme

rextester-gem

interface for rextester api

instalation

gem install rextester
# gemfile
gem 'rextester'

use

initialize Rextester

args:

#run

return the output of the code execution, and sets additional attributes like errors and warnings

example

require 'rextester'

code = Rextester.new code: 'p "hello world"'
p code.run
p code.result
p code.errors
p code.warnings
p code.run_time # in seconds max of 5
p code.mem_peak # in mb max of 1250