Skip to content

Latest commit

 

History

History
111 lines (72 loc) · 3.07 KB

bundle.1.ronn

File metadata and controls

111 lines (72 loc) · 3.07 KB

bundle(1) -- Ruby Dependency Management

SYNOPSIS

bundle COMMAND [--no-color] [--verbose] [ARGS]

DESCRIPTION

Bundler manages an application's dependencies through its entire life across many machines systematically and repeatably.

See the bundler website for information on getting started, and Gemfile(5) for more information on the Gemfile format.

OPTIONS

  • --no-color: Print all output without color

  • --retry, -r: Specify the number of times you wish to attempt network commands

  • --verbose, -V: Print out additional logging information

BUNDLE COMMANDS

We divide bundle subcommands into primary commands and utilities:

PRIMARY COMMANDS

  • bundle install(1): Install the gems specified by the Gemfile or Gemfile.lock

  • bundle update(1): Update dependencies to their latest versions

  • bundle package(1): Package the .gem files required by your application into the vendor/cache directory

  • bundle exec(1): Execute a script in the current bundle

  • bundle config(1): Specify and read configuration options for Bundler

  • bundle help(1): Display detailed help for each subcommand

UTILITIES

PLUGINS

When running a command that isn't listed in PRIMARY COMMANDS or UTILITIES, Bundler will try to find an executable on your path named bundler-<command> and execute it, passing down any extra arguments to it.

OBSOLETE

These commands are obsolete and should no longer be used:

  • bundle cache(1)
  • bundle show(1)