gems bundle 和 bundler 有什么区别
What are the difference between the gems bundle and bundler
我注意到这两个都有效:
gem install bundle
和
gem install bundler
有什么区别?
bundle
只是一个空的 gem,bundler
作为依赖项?
如果你看the page for bundle, it's sort of poor man's alias. Someone realized that it will be a frequent mistake。安装 bundle
只需安装 bundler
.
好东西,想象一下,如果有人真的创建了一个完全独立的 gem,称为 bundle。
没有区别。他们几乎是一样的。事实上,bundle 是 bundler 的别名。
我注意到这两个都有效:
gem install bundle
和
gem install bundler
有什么区别?
bundle
只是一个空的 gem,bundler
作为依赖项?
如果你看the page for bundle, it's sort of poor man's alias. Someone realized that it will be a frequent mistake。安装 bundle
只需安装 bundler
.
好东西,想象一下,如果有人真的创建了一个完全独立的 gem,称为 bundle。
没有区别。他们几乎是一样的。事实上,bundle 是 bundler 的别名。