Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ruby on android : ruboto vs rhodes?

Has anyone tried developing an Android app using Ruby? If so, which tool would you recommend? What are the advantages and disadvantages, comparing (between) both?

Any sharing of experience, insight, etc., would be much appreciated.

like image 982
mhd Avatar asked Jan 14 '11 13:01

mhd


2 Answers

Disclamer: I haven't used this project at all. Having said that:

The Mirah programming language's syntax is based heavily on Ruby and it compiles to Java byte code which you could then run through the dx android tool.

Another option to consider would be JRuby. JRuby is a fairly mature implementation of Ruby which, I believe, supports ahead of time compilation.

like image 179
Wesley Wiser Avatar answered Sep 17 '22 18:09

Wesley Wiser


Rhodes uses compiled Ruby 1.9 bytecode at run time, and does not use the Dalvik JVM at all (it's written in C++ with the NDK). Hence, it is much faster than Ruboto.

like image 29
Adam Blum Avatar answered Sep 20 '22 18:09

Adam Blum