1BUNDLE(1) BUNDLE(1)
2
3
4
6 bundle - Ruby Dependency Management
7
9 bundle COMMAND [--no-color] [--verbose] [ARGS]
10
12 Bundler manages an application´s dependencies through its entire life
13 across many machines systematically and repeatably.
14
15 See the bundler website https://bundler.io for information on getting
16 started, and Gemfile(5) for more information on the Gemfile format.
17
19 --no-color
20 Print all output without color
21
22 --retry, -r
23 Specify the number of times you wish to attempt network commands
24
25 --verbose, -V
26 Print out additional logging information
27
29 We divide bundle subcommands into primary commands and utilities:
30
32 bundle install(1) bundle-install.1.html
33 Install the gems specified by the Gemfile or Gemfile.lock
34
35 bundle update(1) bundle-update.1.html
36 Update dependencies to their latest versions
37
38 bundle cache(1) bundle-cache.1.html
39 Package the .gem files required by your application into the
40 vendor/cache directory (aliases: bundle package, bundle pack)
41
42 bundle exec(1) bundle-exec.1.html
43 Execute a script in the current bundle
44
45 bundle config(1) bundle-config.1.html
46 Specify and read configuration options for Bundler
47
48 bundle help(1) bundle-help.1.html
49 Display detailed help for each subcommand
50
52 bundle add(1) bundle-add.1.html
53 Add the named gem to the Gemfile and run bundle install
54
55 bundle binstubs(1) bundle-binstubs.1.html
56 Generate binstubs for executables in a gem
57
58 bundle check(1) bundle-check.1.html
59 Determine whether the requirements for your application are in‐
60 stalled and available to Bundler
61
62 bundle show(1) bundle-show.1.html
63 Show the source location of a particular gem in the bundle
64
65 bundle outdated(1) bundle-outdated.1.html
66 Show all of the outdated gems in the current bundle
67
68 bundle console(1) (deprecated)
69 Start an IRB session in the current bundle
70
71 bundle open(1) bundle-open.1.html
72 Open an installed gem in the editor
73
74 bundle lock(1) bundle-lock.1.html
75 Generate a lockfile for your dependencies
76
77 bundle viz(1) bundle-viz.1.html (deprecated)
78 Generate a visual representation of your dependencies
79
80 bundle init(1) bundle-init.1.html
81 Generate a simple Gemfile, placed in the current directory
82
83 bundle gem(1) bundle-gem.1.html
84 Create a simple gem, suitable for development with Bundler
85
86 bundle platform(1) bundle-platform.1.html
87 Display platform compatibility information
88
89 bundle clean(1) bundle-clean.1.html
90 Clean up unused gems in your Bundler directory
91
92 bundle doctor(1) bundle-doctor.1.html
93 Display warnings about common problems
94
95 bundle remove(1) bundle-remove.1.html
96 Removes gems from the Gemfile
97
98 bundle plugin(1) bundle-plugin.1.html
99 Manage Bundler plugins
100
101 bundle version(1) bundle-version.1.html
102 Prints Bundler version information
103
105 When running a command that isn´t listed in PRIMARY COMMANDS or UTILI‐
106 TIES, Bundler will try to find an executable on your path named
107 bundler-<command> and execute it, passing down any extra arguments to
108 it.
109
111 These commands are obsolete and should no longer be used:
112
113 • bundle inject(1)
114
115
116
117
118
119
120 October 2022 BUNDLE(1)