捆绑包不安装子依赖项
Bundle not installing sub-dependencies
我刚刚编写了一个名为 jekyll-google-photos 的 gem 模块,其中我提到 fastimage
是依赖项之一。现在在我的 jekyll 网站存储库中,我在 Gemfile 中添加了 jekyll-google-photos
。但是当我执行 bundle install
时,捆绑包不会安装 fastimage
。我还必须将 fastimage
添加到我的 Gemfile 中才能进行捆绑安装。但既然它已经是 jekyll-google-photos
的依赖项要求,为什么它不会自动安装?
But since it is already a dependency requirement for jekyll-google-photos, why won't it get get installed automatically?
只有 runtime_dependencies
会自动安装。
我刚刚编写了一个名为 jekyll-google-photos 的 gem 模块,其中我提到 fastimage
是依赖项之一。现在在我的 jekyll 网站存储库中,我在 Gemfile 中添加了 jekyll-google-photos
。但是当我执行 bundle install
时,捆绑包不会安装 fastimage
。我还必须将 fastimage
添加到我的 Gemfile 中才能进行捆绑安装。但既然它已经是 jekyll-google-photos
的依赖项要求,为什么它不会自动安装?
But since it is already a dependency requirement for jekyll-google-photos, why won't it get get installed automatically?
只有 runtime_dependencies
会自动安装。