Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kjunichi/cordova-plugin-mruby

mruby for cordova(iOS, Android)
https://github.com/kjunichi/cordova-plugin-mruby

cordova jni mruby

Last synced: about 1 month ago
JSON representation

mruby for cordova(iOS, Android)

Awesome Lists containing this project

README

        

# cordova-plugin-mruby

[![cordova-plugin-mruby](http://img.youtube.com/vi/Mz27HAByEE4/0.jpg)](http://www.youtube.com/watch?v=Mz27HAByEE4)

# install

```shell
cordova plugin install https://github.com/kjunichi/cordova-plugin-mruby.git
```

# Usage

## HTML

```html

puts "Hello,mruby!"
i=gets
puts 123.to_s + " mruby i=#{i}"


```

## JavaScript

```javascript
const success = function(message) {
//alert(message);
}
const failure = function() {
alert("Error calling Hello Plugin");
}
const script = document.getElementById("rubyscript").value;
const stdout = document.getElementById("stdout");
mruby.mrbLoadString(script, stdout, success, failure);
```