Java classpath question

IRC is still asleep :slight_smile:

forgive my java newbieness but if a JAR is in the WINDOWS CLASSPATH env
var , does that make it accessible to JRuby via “require” ? , thanks

Charles

anything which is in the classpath which launches jruby or in the
classloader which loads jruby is already available to jruby without any
need to require it. require just add the jar to jruby-classloader.

  • christian

thanks

Charles