aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiz Abinante <eabinante@gmail.com>2017-01-22 13:34:53 -0800
committerLiz Abinante <eabinante@gmail.com>2017-01-22 13:34:53 -0800
commit9d29533ef06489f0b8761bc22c543012588b9536 (patch)
tree3d9e7e70ea4463b937bae9589b74a5a7cd8f63f3
parent478bd39dcf9cc91c980db06d7da04526257d8a17 (diff)
downloadbundler-9d29533ef06489f0b8761bc22c543012588b9536.tar.gz
:sparkle: new pages for and
-rw-r--r--man/bundle-check.1.ronn24
-rw-r--r--man/bundle-clean.1.ronn18
-rw-r--r--man/index.txt2
3 files changed, 44 insertions, 0 deletions
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