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 寶石。Gemfile 中指定的全球來源將會被忽略。
bundle plugin install bundler-graph --source https://example.com
從 example.com 安裝 bundler-graph 寶石。Gemfile 中指定的全球來源將不會被考慮。
bundle plugin install bundler-graph --version 0.2.1
您可以透過 --version 指定寶石的版本。
bundle plugin install bundler-graph --git https://github.com/rubygems/bundler-graph
從 Git 儲存庫安裝 bundler-graph 寶石。您可以使用標準的 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 寶石。

解除安裝

解除安裝 PLUGINS 中指定的套件外掛。

列出

列出已安裝的套件外掛和可用的指令。

沒有選項。

說明

說明子指令或一個特定的子指令。

沒有選項。

另請參閱