私自身の宝石には、Gemfile
基本的に次のような があります。
source 'https://my.gemserver.com'
source 'https://rubygems.org'
gemspec
My.gemspec
にはすべての依存関係が および としてリストされadd_dependency
ていadd_development_dependency
ます。
Bundler 1.8 の時点で、次の警告が表示されます。
Warning: this Gemfile contains multiple primary sources. Using `source` more than
once without a block is a security risk, and may result in installing unexpected gems.
To resolve this warning, use a block to indicate which gems should come from the
secondary source. To upgrade this warning to an error,
run `bundle config disable_multisource true`.
この警告を解決する方法はありますか (バンドル構成を介してミュートせずに)? Rubygems 仕様のソース オプションについては何も見つかりません。