0.0
The project is in a healthy, maintained state
Use ruby in the browser to build your frontend
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Interfacets

Building MRuby for WASM

The Dockerfile builds everything needed. It puts the two required files at /build/ruby.js, /build/ruby.wasm. In order to extract these two files from the build, you can start a container with a bind-mount and copy them out. For example:

docker build -f ./lib/interfacets/mruby/build.dockerfile -t mruby .
docker run -v./build:/build2 mruby cp /build/ruby.js /build/ruby.wasm /build2