在我们的Gemfile中,我们有类似的东西:
gem "our-custom-gem",:path => "/path-to/our-custom-gem"
我们正在尝试打包所有宝石,以便我们可以使用warbler gem创建.war文件,以便使用jRuby进行部署.
我们希望能够运行“bundle install”或“bundle install –local”之类的东西,以确保安装了所有的gem.然后让bundler使用我们的Gemfile中指定的所有依赖项,使用“bundle package”命令将它们放入vendor / bundle中.
但基于此链接(http://gembundler.com/man/bundle-package.1.HTML),看起来捆绑包无法使用:path或:git作为源包装指定的gems.
有没有人找到解决这个问题的方法?
你如何“捆绑包”本地的宝石,不是git仓库的一部分或在rubygems.org上可用?
谢谢.
解决方法 爆炸新闻!Since Bundler 1.2,the bundle package command can also package :git
and :path dependencIEs besIDes .gem files. This needs to be explicitly
enabled via the –all option. Once used,the –all option will be
remembered.
文档:http://gembundler.com/man/bundle-package.1.html
总结以上是内存溢出为你收集整理的rubygems – 使用Bundler包装当地的ruby?全部内容,希望文章能够帮你解决rubygems – 使用Bundler包装当地的ruby?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)