Project

mruby_app

0.0
No commit activity in last 3 years
No release in over 3 years
A CLI tool for using Ruby (mruby) code as a project.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

>= 0
 Project Readme

mruby app

A CLI tool for using Ruby (mruby) code as a project.

This is an early version of work in progress. This tool currently supports:

  • Running your mruby code in debug mode.

Further (not currently supported) plans:

  • Run in distrubution mode (debug off)
  • Build / package distribution
  • Multi-platform support (e.g. command to package an iOS application that can be opened in Xcode, command to run in iOS simulator)

Setup

Note: These steps will include steps for using Mundler. This is not strictly required, but is the intended use.

Populate in app/main.rb:

def main
  puts "hello world"
end

Populate your Gemfile and run bundle install:

gem "mruby_app"
gem "mundler"

Populate your Mundlefile and run mundle install:

mruby tag: "3.0.0"

gembox "default"

Usage

# Start your application (in debug)
bundle exec mapp start # or bundle exec mapp s