为 org.jruby.Main 设置类路径?
我正在这样运行 JRuby:
Main jrubyRunner = new Main()
jrubyRunner.main(sassCompileCommandLineArgs)
我已经将一些 gem 编译到 jar 中。如何将这些 jar 包含在 jrubyRunner
将使用的类路径中?
I'm running JRuby as such:
Main jrubyRunner = new Main()
jrubyRunner.main(sassCompileCommandLineArgs)
I have some gems I've compiled into jars. How do I include those jars on the classpath that jrubyRunner
will use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一部分是加载各种宝石所需的内容。
The first bit is what you need to load various gems.