mruby3-sys 3.2.0

Rust bindings for mruby 3.x Ruby language implementation
Documentation
# mruby is using Rake (https://ruby.github.io/rake/) as a build tool.

RAKE = rake

all :
	$(RAKE)
.PHONY : all

test : all
	$(RAKE) test
.PHONY : test

clean :
	$(RAKE) clean
.PHONY : clean

check :
	pre-commit run --all-files
.PHONY : check

checkupdate :
	pre-commit autoupdate
.PHONY : checkupdate