summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2018-07-01 04:16:59 +0000
committerColby Swandale <me@colby.fyi>2018-10-05 13:48:27 +1000
commit9a266ecd55cd6d23552f5178a9daee0bb1eaec43 (patch)
treef871a9bff5678553d5a1b3dd16ed55d225d56826
parent93a4a1c2b550ffc2b8eef7b4d013a29966188414 (diff)
downloadbundler-9a266ecd55cd6d23552f5178a9daee0bb1eaec43.tar.gz
Auto merge of #6612 - hdf1986:readme-bundle-add, r=segiddins
Updated 'bundle add' to rspec install guide ### What was the end-user problem that led to this PR? There's a new command `bundle add` which is almost unknown ### What was your diagnosis of the problem? We are promoting to use a simple append to the Gemfile when there's a `bundle add` command available ### What is your fix for the problem, implemented in this PR? My fix is just a little readme change :sweat_smile: ### Why did you choose this fix out of the possible options? Because it's a simple fix and provides more exposure to the command (cherry picked from commit 34f909fc351934c00a7dcc3e3ea76771fd3f903f)
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index db69f55f11..c9b85a7ca4 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ Bundler is most commonly used to manage your application's dependencies. For exa
```
bundle init
-echo 'gem "rspec"' >> Gemfile
+bundle add rspec
bundle install
bundle exec rspec
```