Skip to content

Instantly share code, notes, and snippets.

Created June 23, 2015 09:59
Show Gist options
  • Save anonymous/0c6736bff07d48f1aab4 to your computer and use it in GitHub Desktop.
Save anonymous/0c6736bff07d48f1aab4 to your computer and use it in GitHub Desktop.
Jruby+Truffle issue.
$ cat a.rb
require("./b.rb")
$ cat b.rb
puts("hi")
$ ruby2.1 a.rb
hi
$ ../work/jruby/bin/jruby a.rb
hi
$ ../work/jruby/bin/jruby -X+T -J-server a.rb
a.rb:1:in `require': cannot load such file -- ./b.rb (LoadError)
from a.rb:1:in `<main>'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment