Docs header transparent bg

捆绑插件

bundle-plugin - 管理 Bundler 插件

bundle plugin install PLUGINS [--source=SOURCE] [--version=version]
                              [--git=git-url] [--branch=branch|--ref=rev]
                              [--path=path]
bundle plugin uninstall PLUGINS
bundle plugin list
bundle plugin help [COMMAND]

描述

您可以使用此命令安装、卸载和列出插件,以扩展 Bundler 的功能。

子命令

安装

安装给定的插件。

bundle plugin install bundler-graph
从全局配置的源(默认情况下为 RubyGems.org)安装 bundler-graph gem。Gemfile 中的 source 中指定的全局源将被忽略。
bundle plugin install bundler-graph --source https://example.com
从 example.com 安装 bundler-graph gem。不会考虑 Gemfile 中的 source 中指定的全局源。
bundle plugin install bundler-graph --version 0.2.1
您可以通过 --version 指定 gem 的版本。
bundle plugin install bundler-graph --git https://github.com/rubygems/bundler-graph
从 Git 仓库安装 bundler-graph gem。您可以使用标准的 Git URL,例如

ssh://[user@]host.xz[:port]/path/to/repo.git
http[s]://host.xz[:port]/path/to/repo.git
/path/to/repo
file:///path/to/repo

当您指定 --git 时,您可以使用 --branch--ref 指定要使用的任何分支、标签或提交哈希(修订版)。

bundle plugin install bundler-graph --path ../bundler-graph
从本地路径安装 bundler-graph gem。

卸载

卸载 PLUGINS 中指定的插件。

列表

列出已安装的插件和可用的命令。

无选项。

帮助

描述子命令或一个特定的子命令。

无选项。

另请参阅