You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Main.java bootstraps a package Ruby app by using evalScript to require the main Ruby file as defined in build_configuration.rb
This is typically src/main.rb but file name is configurable.
The call to require does not use a full path; it assumed that 1src/was part of$LOAD_PATH` but with recent JRuby releases this appears to no longer be the case.
What now happens is the code fails with a "File not found" exception.
The text was updated successfully, but these errors were encountered:
Code has been added to pull the value of source_dirs from build_configuration.rb and dynamically add these to $LOAD_PATH before attempting to require the main Ruby file.
Main.java bootstraps a package Ruby app by using evalScript to require the main Ruby file as defined in build_configuration.rb
This is typically
src/main.rb
but file name is configurable.The call to require does not use a full path; it assumed that 1src/
was part of
$LOAD_PATH` but with recent JRuby releases this appears to no longer be the case.What now happens is the code fails with a "File not found" exception.
The text was updated successfully, but these errors were encountered: