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 http://bundler.io for information on getting
16 started, and Gemfile(5) for more information on the Gemfile format.
17
19 --no-color
20 Prints all output without color
21
22 --verbose
23 Prints out additional logging information
24
26 We divide bundle subcommands into primary commands and utilities.
27
29 bundle install(1) bundle-install.1.html
30 Install the gems specified by the Gemfile or Gemfile.lock
31
32 bundle update(1) bundle-update.1.html
33 Update dependencies to their latest versions
34
35 bundle package(1) bundle-package.1.html
36 Package the .gem files required by your application into the
37 vendor/cache directory
38
39 bundle exec(1) bundle-exec.1.html
40 Execute a script in the context of the current bundle
41
42 bundle config(1) bundle-config.1.html
43 Specify and read configuration options for bundler
44
45 bundle help(1)
46 Displays detailed help for each subcommand
47
49 bundle check(1)
50 Determine whether the requirements for your application are
51 installed and available to bundler
52
53 bundle list(1)
54 Show all of the gems in the current bundle
55
56 bundle show(1)
57 Show the source location of a particular gem in the bundle
58
59 bundle outdated(1)
60 Show all of the outdated gems in the current bundle
61
62 bundle console(1)
63 Start an IRB session in the context of the current bundle
64
65 bundle open(1)
66 Open an installed gem in the editor
67
68 bundle viz(1)
69 Generate a visual representation of your dependencies
70
71 bundle init(1)
72 Generate a simple Gemfile, placed in the current directory
73
74 bundle gem(1)
75 Create a simple gem, suitable for development with bundler
76
77 bundle platform(1) bundle-platform.1.html
78 Displays platform compatibility information
79
80 bundle clean(1)
81 Cleans up unused gems in your bundler directory
82
84 These commands are obsolete and should no longer be used
85
86 · bundle lock(1)
87
88 · bundle unlock(1)
89
90 · bundle cache(1)
91
92
93
94
95
96
97 December 2014 BUNDLE(1)