我正在构建一个rails引擎,我需要在其中包含一个gem,因为它不公开。最好的方法是什么?
答案 0 :(得分:0)
在你的Gemfile中:
gem 'super-private-sneaky-gem', :git => 'https://github.com/Inc1982/super-private-sneaky-gem', :branch => 'master'
答案 1 :(得分:0)
当您有权访问不公开的gem时,您需要提供gem。这将生成可用的不可公开的宝石的源代码,但不是位置。这是a guide describing how to vendor a single rails gem, with or without bundler。