jrubyfx
jrubyfx copied to clipboard
JavaFX JRuby binding
anyone tested or is it in your roadmap? https://github.com/TestFX/TestFX
I tried to jarify the Demo example (samples/fxml/Demo.rb) but the resulting Demo.jar file cannot be consumed by "java -jar Demo.jar" due to LoadError: no such file to load -- classpath:/home/cg/wuala_synced_data/misc/JavaFX_projects/jrubyfx/complex_control...
Hi, I have the following snippet: ``` require 'jrubyfx' class AddSubtract < JRubyFX::Application attr_accessor :count def initialize @count = 0 end def start(stage) lbl = label("Count: 0") btn_add = button("Add")...
I was sad that calling #inspect on Java FX objects didn't return much useful information. This pull only deals with `#inspect` on objects descended from `Node`. It is able to...
so in the quest to create a jrubyfx jar with compiled source (attempt at ip protection), I decided today to check out the jarify utility, which did create a jar...
apparently jrubyfx jdk 8 is still required or checked for although Oracle's JDK and packaging tools already support native packaging i.e. jdk 1.7x certainly 0_25, 0_45 is this a matter...
When you call a color converter (just an example) which takes a symbol we get a rather weird error message to anyone who is not a JRubyFX hacker: ``` text...
totally skips styleClass
Apparently it happens in Java.
reflection is slow, so if we pre-compile all of it, startup time will be faster (tested with old version reveal startup times goes from 15 seconds to 6 second)