From 9d29533ef06489f0b8761bc22c543012588b9536 Mon Sep 17 00:00:00 2001 From: Liz Abinante Date: Sun, 22 Jan 2017 13:34:53 -0800 Subject: :sparkle: new pages for and --- man/bundle-check.1.ronn | 24 ++++++++++++++++++++++++ man/bundle-clean.1.ronn | 18 ++++++++++++++++++ man/index.txt | 2 ++ 3 files changed, 44 insertions(+) create mode 100644 man/bundle-check.1.ronn create mode 100644 man/bundle-clean.1.ronn diff --git a/man/bundle-check.1.ronn b/man/bundle-check.1.ronn new file mode 100644 index 00000000..4bdf39ef --- /dev/null +++ b/man/bundle-check.1.ronn @@ -0,0 +1,24 @@ +bundle-check(1) -- Verifies if dependencies are satisfied by installed gems +=========================================================================== + +## SYNOPSIS + +`bundle check` [--dry-run] [--gemfile=FILE] [--path=PATH] + +## DESCRIPTION + +`check` searches the local machine for each of the gems requested in the +Gemfile. If all gems are found, Bundler prints a success message and exits with +a status of 0. + +If not, the first missing gem is listed and Bundler exits status 1. + +## OPTIONS + +* `--dry-run`: + Locks the `Gemfile(5)` before running the command. +* `--gemfile`: + Use the specified gemfile instead of the `Gemfile(5)` +* `--path`: + Specify a different path than the system default ($BUNDLE_PATH or $GEM_HOME). + Bundler will remember this value for future installs on this machine. diff --git a/man/bundle-clean.1.ronn b/man/bundle-clean.1.ronn new file mode 100644 index 00000000..6c7eb357 --- /dev/null +++ b/man/bundle-clean.1.ronn @@ -0,0 +1,18 @@ +bundle-clean(1) -- Cleans up unused gems in your bundler directory +================================================================== + +## SYNOPSIS + +`bundle clean` [--dry-run] [--force] + +## DESCRIPTION + +This command will remove all unused gems in your bundler directory. This is +useful when you have made many changes to your gem dependencies. + +## OPTIONS + +* `--dry-run`: + Print the changes, but do not actually clean the unused gems. +* `--force`: + Force a clean even if `--path` is not set. diff --git a/man/index.txt b/man/index.txt index 9e46ceba..e33890d7 100644 --- a/man/index.txt +++ b/man/index.txt @@ -6,3 +6,5 @@ bundle-exec bundle-exec.1 bundle-config bundle-config.1 bundle-platform bundle-platform.1 bundle-gem bundle-gem.1 +bundle-clean bundle-clean.1 +bundle-check bundle-check.1 -- cgit v1.2.3