2

I know there are many tools/frameworks in RubyMotion, such as: Bubblewrap, AFMotion. (refer to: http://siwei.me/blog/posts/rubymotion-2-must-have-libraries-for-rubymotion-part2 ) , but when I googled around for the similar tools in Ruboto (Ruby on Android) I didn't see any result.

Could someone give me a clue? thanks a lot.

Developer
  • 144
  • 11
Siwei
  • 19,858
  • 7
  • 75
  • 95

2 Answers2

3

There are few (none?) Ruboto-specific libraries that I know of, but you can use all the Android tools and libraries in addition to all Java tools and libraries that do not target Java 7/8 or JNI, and you can use all pure Ruby gems, and gems targeting JRuby.

Ruboto itself is bundled with ruboto/widget which is a DSL for creating UI layouts.

donV
  • 1,091
  • 7
  • 15
2

Calabash-Android is automation tool using Ruby. Do you need automation tool or tools that helps writing native application in Android?

Swaroop
  • 532
  • 1
  • 4
  • 16
  • thanks @Bapu, what I need is the Ruboto-specific libs, but not automation tools using Ruby. thanks again. – Siwei Oct 20 '14 at 01:24