1BUNDLE-PLUGIN(1)                                              BUNDLE-PLUGIN(1)
2
3
4

NAME

6       bundle-plugin - Manage Bundler plugins
7

SYNOPSIS

9       bundle  plugin  install  PLUGINS  [--source=SOURCE] [--version=version]
10       [--git|--local_git=git-url] [--branch=branch|--ref=rev]
11       bundle plugin uninstall PLUGINS
12       bundle plugin list
13       bundle plugin help [COMMAND]
14

DESCRIPTION

16       You can install, uninstall, and list plugin(s) with this command to ex‐
17       tend functionalities of Bundler.
18

SUB-COMMANDS

20   install
21       Install the given plugin(s).
22
23bundle plugin install bundler-graph: Install bundler-graph gem from
24           RubyGems.org. The global source, specified in source in Gemfile  is
25           ignored.
26
27bundle  plugin  install bundler-graph --source https://example.com:
28           Install bundler-graph gem  from  example.com.  The  global  source,
29           specified in source in Gemfile is not considered.
30
31bundle  plugin install bundler-graph --version 0.2.1: You can spec‐
32           ify the version of the gem via --version.
33
34bundle       plugin       install        bundler-graph        --git
35           https://github.com/rubygems/bundler-graph:   Install  bundler-graph
36           gem from Git repository. --git can be  replaced  with  --local-git.
37           You cannot use both --git and --local-git. You can use standard Git
38           URLs like:
39
40ssh://[user@]host.xz[:port]/path/to/repo.git
41
42http[s]://host.xz[:port]/path/to/repo.git
43
44/path/to/repo
45
46file:///path/to/repo
47
48
49
50       When you specify --git/--local-git, you can use --branch  or  --ref  to
51       specify  any  branch,  tag,  or commit hash (revision) to use. When you
52       specify both, only the latter is used.
53
54
55
56   uninstall
57       Uninstall the plugin(s) specified in PLUGINS.
58
59   list
60       List the installed plugins and available commands.
61
62       No options.
63
64   help
65       Describe subcommands or one specific subcommand.
66
67       No options.
68

SEE ALSO

70       •   How        to        write         a         Bundler         plugin
71           https://bundler.io/guides/bundler_plugins.html
72
73
74
75
76
77
78                                 October 2022                 BUNDLE-PLUGIN(1)
Impressum