Ruboto - JRuby on Android


MIT
Android
Java

软件简介

Ruboto 是一个完全用 Ruby 语言来构建
Android 应用程序的框架。

安装方法:$ gem install ruboto-core

示例代码:

require 'ruboto.rb' #scripts will not work without doing this
$activity.handle_create do |bundle|
  Log.v 'MYAPPNAME', 'onCreate got called!'
  handle_pause do
    Log.v 'MYAPPNAME', 'onPause got called!'
  end
end