You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Is it possible to use Ruby as a Scripting Language for the JobScheduler?

JRuby should be possible. We use the the Javax scripting framework to allow implementation of third-party scripting engines. You can read more about this in our JobScheduler and Script Languages document.

The language identification would be: "javax.script:jruby"
and you would call the script engine using:

 ScriptEngine jruby = new ScriptEngineManager().getEngineByName("jruby");
  • No labels