Rails 插件可以打包为 WAR/JAR 文件吗?
是否可以将插件打包为 JAR/WAR 文件,就像打包整个 Rails 应用程序以在 JRuby 上部署一样?
Can a plugin be packaged as a JAR/WAR file similar to the way in which an entire Rails app can be packaged for deployment on JRuby?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要么你想要 warbler 或者你想制作一个罐子。
如果您需要带有该插件的空 Rails 应用程序,请创建一个空项目,安装该插件,然后编辑 config/warble.rb 以复制您需要的 gem
。 您需要 jrubyc 将 rb 文件编译为类文件,然后可以使用 java jar 命令将其转换为 jar。 将该 jar 放入任何需要这些 ruby 类的 Java 应用程序的 WEB-INF/lib 中。
either you want warbler or you want to make a jar.
If you need an empty rails app with that plugin, create an empty project, install the plugin and, edit config/warble.rb to copy the gems you need
If you need a jar with class files from that plugin; you need jrubyc to compile the rb files to class files that you can then turn into a jar with the java jar command. Put that jar into WEB-INF/lib of any Java app that needs those ruby classes.