bundle-plugin
- Manage Bundler plugins
bundle plugin
install PLUGINS [--source=SOURCE] [--version=VERSION] [--git=GIT] [--branch=BRANCH|--ref=REF] [--local-git=LOCAL_GIT] [--path=PATH]
bundle plugin
uninstall PLUGINS [--all]
bundle plugin
list
bundle plugin
help [COMMAND]
You can install, uninstall, and list plugin(s) with this command to extend functionalities of Bundler.
Install the given plugin(s).
For example, bundle plugin install bundler-graph
will install bundler-graph
gem from globally configured sources (defaults to RubyGems.org). Note that the
global source specified in Gemfile is ignored.
OPTIONS
--source=SOURCE
Example: bundle plugin install bundler-graph --source https://example.com
--version=VERSION
--version
.
Example: bundle plugin install bundler-graph --version 0.2.1
--git=GIT
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
Example: bundle plugin install bundler-graph --git https://github.com/rubygems/bundler-graph
--branch=BRANCH
--git
, you can use --branch
to use.--ref=REF
--git
, you can use --ref
to specify any tag, or commit
hash (revision) to use.--path=PATH
Example: bundle plugin install bundler-graph --path ../bundler-graph
--local-git=LOCAL_GIT
Example: bundle plugin install bundler-graph --local-git ../bundler-graph
.
This option is deprecated in favor of --git
.
Uninstall the plugin(s) specified in PLUGINS.
OPTIONS
--all
List the installed plugins and available commands.
No options.
Describe subcommands or one specific subcommand.
No options.