We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
headius
Learn more about funding links in repositories.
Report abuse
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
line https://travis-ci.org/jruby/jruby/jobs/117553486#L4709 shows a forked jruby process by rspec/rake
java -cp :/home/travis/build/jruby/jruby/maven/jruby/target/it/runnable/runnable.jar org.jruby.Main -Iuri:classloader:/gems/rspec-core-3.4.3/lib:uri:classloader:/gems/rspec-support-3.4.1/lib uri:classloader://gems/rspec-core-3.4.3/exe/rspec --pattern spec/\*\*\{,/\*/\*\*\}/\*_spec.rb
the load-path should use the same regexp for splitting it as we use for GEM_PATH in rubygems.
jruby-9.1.0.0-SNAPSHOT
$LOAD_PATH should be ['uri:classloader:/gems/rspec-core-3.4.3/lib']
['uri:classloader:/gems/rspec-core-3.4.3/lib']
$LOAD_PATH is ['uri', 'classloader', '/gems/rspec-core-3.4.3/lib']
['uri', 'classloader', '/gems/rspec-core-3.4.3/lib']
The text was updated successfully, but these errors were encountered:
although $LOAD_PATH doesn't know anything about RubyGems and its spliting logic or does it?
$LOAD_PATH
Sorry, something went wrong.
$LOAD_PATH is an array. -Ipath1:path2 commandline switch is the thing which needs the splitting logic
-Ipath1:path2
It seems like this logic is there in ArgumentProcessor...
was fixed by fa4846f
mkristian
No branches or pull requests
line https://travis-ci.org/jruby/jruby/jobs/117553486#L4709
shows a forked jruby process by rspec/rake
the load-path should use the same regexp for splitting it as we use for GEM_PATH in rubygems.
Environment
jruby-9.1.0.0-SNAPSHOT
Expected Behavior
$LOAD_PATH should be
['uri:classloader:/gems/rspec-core-3.4.3/lib']
Actual Behavior
$LOAD_PATH is
['uri', 'classloader', '/gems/rspec-core-3.4.3/lib']
The text was updated successfully, but these errors were encountered: