summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephanie Morillo <rubymorillo@users.noreply.github.com>2017-07-21 10:36:54 -0400
committerGitHub <noreply@github.com>2017-07-21 10:36:54 -0400
commitfe33a44dfa165739d3510b10e3e36a52435eadbe (patch)
tree6ee8b52b95d603de5fc5abaced6dee1dcd654eda
parent1762424b34f3f65f66796e3fccfc1039bb60e556 (diff)
downloadbundler-fe33a44dfa165739d3510b10e3e36a52435eadbe.tar.gz
Remove whitespace, change sentence
Removed the whitespace in sentences 10, 11, 13, 17, and 18, and edited one of the sentences per @indirect's recommendation.
-rw-r--r--man/bundle-binstubs.ronn14
1 files changed, 7 insertions, 7 deletions
diff --git a/man/bundle-binstubs.ronn b/man/bundle-binstubs.ronn
index 11be49c72e..afceda8690 100644
--- a/man/bundle-binstubs.ronn
+++ b/man/bundle-binstubs.ronn
@@ -7,15 +7,15 @@ bundle-binstubs(1) -- Install the binstubs of the listed gems
## DESCRIPTION
-Binstubs are scripts that wrap aroung executables. Bundler creates a
-small Ruby file (a binstub) that loads Bundler, runs the command,
+Binstubs are scripts that wrap aroung executables. Bundler creates a
+small Ruby file (a binstub) that loads Bundler, runs the command,
and puts it into `bin/`. Binstubs are a shortcut—or alternative—
-to always using `bundle exec`, with the additional benefit of linking
-the binstub inside of an application to the exact version of the gem the
-application needs.
+to always using `bundle exec`. This gives you a file that can by run
+directly, and one that will always run the correct gem version
+used by the application.
-For example, if you run `bundle binstubs rspec-core`, Bundler will create
-the file `bin/rspec`. That file will contain just enough code to load Bundler,
+For example, if you run `bundle binstubs rspec-core`, Bundler will create
+the file `bin/rspec`. That file will contain enough code to load Bundler,
tell it to load the bundled gems, and then run rspec.
This command generates binstubs for executables in `GEM_NAME`.