summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPatricia Arbona <arbonap@gmail.com>2017-07-20 22:32:25 -0500
committerPatricia Arbona <arbonap@gmail.com>2017-07-20 22:37:44 -0500
commitce8011d18b5019ee93768c835a11a126006f3f95 (patch)
tree16f7b2055ad82ef9753340b9e3790d85d406b5b3 /README.md
parentd273f2116e5e7de1f8c453a15487e1699d2c08f5 (diff)
downloadbundler-ce8011d18b5019ee93768c835a11a126006f3f95.tar.gz
Add instructions on how to update bundler, install prereleases, and uninstall in README
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/README.md b/README.md
index 3f8fd13c52..feb41ba7d5 100644
--- a/README.md
+++ b/README.md
@@ -18,6 +18,22 @@ To install:
gem install bundler
```
+To update:
+
+- Run `gem install bundler` again
+
+To install prereleases:
+
+```
+gem install bundler --pre
+```
+
+To uninstall:
+
+```
+gem uninstall bundler
+```
+
Bundler is most commonly used to manage your application's dependencies. To use it for this:
```