A new version for jdk17+ and JRuby-9.3.2.0 use, does not require an installed vanilla processing, however if installed you can use processing-ide to download libraries. Configuration file is incompatible with that of previous version of JRubyArt (and you should move or rename old config.yml to keep it). This version will run with a default configuration file but you won't be able to use processing libraries, until you match configuration to your setup. Illegal reflective access warning should be fixed for this release (by using JOGL-2.4.0-rc jars), though you may need to define JAVA_HOME for JRuby warnings to be suppressed.
A clean start for jruby_art with custom processing core included, built for jruby-9.3.2.0 see wiki for building gem from this repo.
A suitable version of ruby (MRI ruby 2.6+ or jruby-9.3.2.0) to download gem. NB: avoid ruby 2.7, it is guaranteed to give you problems (you've been warned)
Tested and working OpenJDK 17, if you have any issues with opengl sketches with distro installed JDK use a JDK from AdoptOpenJDK.
You can if you wish leave configuration to the new autoconfig tool (delete or rename existing config to do this). The config file is config.yml in the ~/.jruby_art folder, the autoconfig gets run on k9 --install expected to just work.
config.yml on linux
---
processing_ide: true
library_path: "/home/tux/sketchbook"
MAX_WATCH: 32
JRUBY: true
template: bare
java_args:
# Global java_args can be used to suppress reflective access warn gem install jruby_art
k9 --install # installs jruby-complete-9.2.13.0 and downloads and installs samples to ~/k9_samples
cd ~/k9_samples/contributed
k9 --run jwishy.rb # if you have jruby-9.2.13.0 installed or config `JRUBY: false`
# to use jruby-complete set `JRUBY: false` in configk9 --create fred 200 200 # basic sketch fred.rb
k9 --create fred 200 200 p2d # basic P2D sketch fred.rbTo create either a class wrapped sketch or emacs sketch set template: class or template: emacs in config.yml
def setup
sketch_title 'My Sketch'
end
def draw
background 0
fill 200
ellipse width / 2, height / 2, 300, 200
end
def settings
size 400, 300
endSee above be prepared to KILL the odd java process (ie when sketch does not exit cleanly)
k9 --watch sketch.rb # NB: doesn't work with FX2D render modek9 --live sketch.rb # pry is bound to Processing.app # needs `jruby -S gem install pry`Worked Examples and, The-Nature-of-Code-Examples-for-JRubyArt feel free to add your own, especially ruby-2.6+ syntax now we can. These can now be downloaded using k9 --install please move existing k9_samples if you wish to keep them.