summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2017-07-20 23:23:49 -0700
committerAndre Arko <andre@arko.net>2017-07-20 23:23:49 -0700
commit5bbd19ac93ef7efde5bd0ac3f0e5dd213bbfe481 (patch)
treed9fe2598d308739c59991e138b94eb3bc0603f10
parentce8011d18b5019ee93768c835a11a126006f3f95 (diff)
downloadbundler-5bbd19ac93ef7efde5bd0ac3f0e5dd213bbfe481.tar.gz
collapse examples where possible
-rw-r--r--README.md20
1 files changed, 3 insertions, 17 deletions
diff --git a/README.md b/README.md
index feb41ba7d5..649b777129 100644
--- a/README.md
+++ b/README.md
@@ -12,29 +12,15 @@ It does this by managing the gems that the application depends on. Given a list
### Installation and usage
-To install:
+To install (or update to the latest version):
```
gem install bundler
```
-To update:
+To install a prerelease version (if one is available), run `gem install bundler --pre`. To uninstall Bundler, run `gem uninstall bundler`.
-- 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:
+Bundler is most commonly used to manage your application's dependencies. For example, these commands will allow you to use Bundler to manage the `rspec` gem for your application:
```
bundle init