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 package(1) bundle-package.1.html
39 Package the .gem files required by your application into the
40 vendor/cache directory
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)
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)
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
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
99 When running a command that isn´t listed in PRIMARY COMMANDS or UTILI‐
100 TIES, Bundler will try to find an executable on your path named
101 bundler-<command> and execute it, passing down any extra arguments to
102 it.
103
105 These commands are obsolete and should no longer be used:
106
107 • bundle cache(1)
108
109 • bundle show(1)
110
111
112
113
114
115
116 December 2021 BUNDLE(1)